常常会用到对plist文件的封装 +(NSArray *)LoadFriendsDataFromPlist:(NSString *)plistName{ NSString * filePath = [[NSBundle mainBundle]pathForResource:plistName ofT ...
分类:
其他好文 时间:
2016-03-31 21:39:47
阅读次数:
124
第一种方法系统自带的解析方法(NSXMLParser) //1、指定XML文件 NSString *path=[[NSBundle mainBundle] pathForResource:@"person" ofType:@"xml"]; //转换成data类型对象 NSData *data=[NS ...
分类:
其他好文 时间:
2016-03-28 23:33:08
阅读次数:
309
NSString *path = [[NSBundle mainBundle] pathForResource:@"ad_type = 4" ofType:@"html"]; NSString *htmlStr = [NSString stringWithContentsOfFile:path en
分类:
Web程序 时间:
2016-03-04 18:58:48
阅读次数:
219
错误提示: Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '*** -[NSURL initFileURLWithPath:]: nil string parameter' 解决方法:
分类:
其他好文 时间:
2016-03-02 21:46:24
阅读次数:
119
在项目中,经常需要读取配置文件,现在就来看看读取plist配置文件的代码 NSBundle *bundle = [NSBundle mainBundle]; NSString *plistPath = [bundle pathForResource:@"fileName" ofType:@"plis
分类:
移动开发 时间:
2016-03-01 00:52:44
阅读次数:
214
1.plist文件 (1)plist文件是iOS里最简单的一个数据本地化存储方式,我们可以将数据写成数据结构存储到plist文件中永久保存。 (2)通过 [[NSBundlemainBundle] pathForResource:@"myPlist"ofType:@"plist"] 可以获取plis
分类:
其他好文 时间:
2016-02-19 22:03:29
阅读次数:
281
// 准备歌曲数据 NSString *path = [[NSBundle mainBundle] pathForResource:@"Alan Walker - Fade.mp3" ofType:nil]; NSData *musicData = [NSData dataWithContentsO
分类:
移动开发 时间:
2016-02-02 01:13:12
阅读次数:
230
- (AFSecurityPolicy*)customSecurityPolicy{/**** SSL Pinning ****/NSString *cerPath = [[NSBundle mainBundle] pathForResource:@"你的证书" ofType:@"cer"];NSD...
分类:
Web程序 时间:
2016-01-19 10:31:39
阅读次数:
180
//读取Json文件 地区//将文件拖到本地 获取json数据 //获取json文件路径 NSString *pathArea=[[NSBundle mainBundle] pathForResource:@"area" ofType:@"json"]; //==Json数据 NSData ...
分类:
Web程序 时间:
2016-01-16 14:05:31
阅读次数:
139
一:UIWebView加载数据的方式有三种: 1:- (void)loadRequest:(NSURLRequest*)request NSString * path = [[NSBundle mainBundle] pathForResource:@"demoFolder" ofType:...
分类:
编程语言 时间:
2015-12-25 21:06:23
阅读次数:
398