当前位置:  开发笔记 > IOS > 正文

连接NSString和int的最简单方法

如何解决《连接NSString和int的最简单方法》经验,为你挑选了2个好方法。

Objective-C中是否有通用功能,我可以插入到我的项目中以简化连接NSStringints?



1> Genericrich..:
[NSString stringWithFormat:@"THIS IS A STRING WITH AN INT: %d", myInt];

这通常是我如何做到的.



2> Rog..:

两个答案都是正确的.如果要连接多个字符串和整数,请使用NSMutableString的appendFormat.

NSMutableString* aString = [NSMutableString stringWithFormat:@"String with one int %d", myInt];    // does not need to be released. Needs to be retained if you need to keep use it after the current function.
[aString appendFormat:@"... now has another int: %d", myInt];

推荐阅读
pan2502851807
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有