【代码笔记】plist获得城市列表_移动开发_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > 移动开发 > 【代码笔记】plist获得城市列表

【代码笔记】plist获得城市列表

 2017/12/1 10:04:52  陈沐夕  程序员俱乐部  我要评论(0)
  • 摘要:一,工程图。二,代码。-(void)viewDidLoad{[superviewDidLoad];//Doanyadditionalsetupafterloadingtheview,typicallyfromanib.NSString*cityPlistPath=[[NSBundlemainBundle]pathForResource:@"cities"ofType:@"plist"];//按照拼写排序
  • 标签:笔记 list 代码

一,工程图。

二,代码。

class="cnblogs_code_copy" style="font-size: 18px">复制代码
- (void)viewDidLoad {
    [super viewDidLoad];
    // Do any additional setup after loading the view, typically from a nib.
    
    
    NSString* cityPlistPath = [[NSBundle mainBundle] pathForResource:@"cities" ofType:@"plist"];
    
    //按照拼写排序,spell是英文拼写
    NSSortDescriptor *bySpell  = [NSSortDescriptor sortDescriptorWithKey:@"spell" ascending:YES];
    NSArray *cities = [[NSArray arrayWithContentsOfFile:cityPlistPath] sortedArrayUsingDescriptors:@[bySpell]];
    NSLog(@"--cities--%@",cities);
    
}
复制代码
上一篇: 从ThoughtWorks 2017技术雷达看微软技术 下一篇: 没有下一篇了!
发表评论
用户名: 匿名