首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 移动开发 > 移动开发 >

Objective-c中Foundation中的几个惯用类

2012-12-31 
Objective-c中Foundation中的几个常用类NSString *str7 @aNSString *str8 @bNSString * str9

Objective-c中Foundation中的几个常用类

NSString *str7 = @"a"; NSString *str8 = @"b"; NSString * str9 = @"A"; NSLog(@"比较结果为:%@",[str7 compare:str8]?@"YES":@"NO");//比较结果为:YES //忽略大小写 NSLog(@"忽略大小写1,%ld",[str7 caseInsensitiveCompare:str8]);//忽略大小写1,-1 NSLog(@"忽略大小写2,%ld",[str9 caseInsensitiveCompare:str7]);//忽略大小写2,0


热点排行