码迷,mamicode.com
首页 > 移动开发 > 详细

iOS开发读取plist内容

时间:2015-12-07 00:24:04      阅读:156      评论:0      收藏:0      [点我收藏+]

标签:

ios开发中会用到plist保存数据,读取plist数据只需要一行代码就行:

NSArray * appInfos = [NSArray arrayWithContentsOfFile:[[NSBundle mainBundle] pathForResource:@"appslist" ofType:@"plist"] 

 [NSBundle mainBundle]会返回当前程序的bundle bundle是什么鬼? 

  调用NSBundle的方法-> pathForResource: @"fileName" ofType:@"fileType"  来获取想要加载的plist的路径

  获取到想要加载的plist的路径后就能调用NSArray 的方法->arrayWithContentsOfFile: @"plistPath" 来读取plist里面的数据

iOS开发读取plist内容

标签:

原文地址:http://www.cnblogs.com/panxiaochun/p/5024602.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!