博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
【代码笔记】iOS-plist获得城市列表
阅读量:4960 次
发布时间:2019-06-12

本文共 540 字,大约阅读时间需要 1 分钟。

一,工程图。

二,代码。

- (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); }

转载于:https://www.cnblogs.com/yang-guang-girl/p/7940257.html

你可能感兴趣的文章
标准库 string
查看>>
C++内联函数
查看>>
LNMP 1.1 php编译安装
查看>>
jw player参数设定(转)
查看>>
mysql 不常用备忘
查看>>
Mybatis自动化生成代码
查看>>
asp.net 动态添加多附件上传.
查看>>
sscanf()函数
查看>>
WEEX学习网站
查看>>
uDig介绍
查看>>
后台调用外部程序的完美实现
查看>>
python随机数random模块
查看>>
03-body标签中相关标签
查看>>
JavaScript:对Object对象的一些常用操作总结
查看>>
node assert.equal()
查看>>
buf.readUIntBE()
查看>>
Beta 冲刺(1/7)
查看>>
【luogu2747】 [USACO5.4]周游加拿大Canada Tour[动态规划]
查看>>
ubuntu安装mysql 时未提示输入密码
查看>>
L1-006 连续因子
查看>>