NSString是Cocoa中用来处理字符串的类
字符串的创建
- NSString *height;
- height = [NSString stringWithFormat:@"the height is %d feet",12];
- //得到的字符串为:the height is 12 feet
复制代码 stringWithFormat:是一个工厂方法,根据你提供的参数来创建新的对象。
字符串长度:字符串中提供了一个length的实例方法,能够返回字符串中字符个数,使用方法如下
- NSUInteger length = [height length];
复制代码
|
|