1 /* 2 3 4 //JSON解析 系统自带方式 -- 5 6 //1.获取路劲 7 NSString *fielPath = [[NSBundle mainBundle]pathForResource:@"Student.json" o...
分类:
Web程序 时间:
2015-10-14 21:44:32
阅读次数:
188
NSString *filePath = [[NSBundle mainBundle] pathForResource:@"cinemalist" ofType:@"plist"]; NSMutableDictionary *myDic = [NSMutableDictionary dictio.....
分类:
其他好文 时间:
2015-09-30 16:27:49
阅读次数:
153
1,使用imageWithContentsOfFile:初始化 UIImage *image = [UIImage imageWithContentsOfFile:[[NSBundle mainBundle] pathForResource:@"1.png" ofType:nil]]; UI...
分类:
其他好文 时间:
2015-09-25 07:21:03
阅读次数:
354
#define NavigationBar_HEIGHT 44#define LOADIMAGE(file,ext) [UIImage imageWithContentsOfFile:[[NSBundle mainBundle]pathForResource:file ofType:ext]]//读...
分类:
其他好文 时间:
2015-09-22 16:01:37
阅读次数:
215
JSON解析步骤:1.获取json文件路径NSString*path = [[NSBundle mainBundle] pathForResource:@"Teacher"ofType:@"json"];2.读取文件中的dataNSData *data = [NSData dataWithConte...
分类:
移动开发 时间:
2015-09-18 23:13:59
阅读次数:
217
从视频中获取截图:NSString *movpath =[[NSBundle mainBundle] pathForResource:@”iosxcode4″ ofType:@”mov”];mpviemController =[[MPMoviePlayerViewController alloc]....
分类:
移动开发 时间:
2015-09-14 18:09:56
阅读次数:
156
解析json数据//找到json路径NSString*filePath=[[NSBundlemainBundle]pathForResource:@"us_box"ofType:@"json"];//从路径中获取数据NSData*data=[NSDatadataWithContentsOfFile:filePath];//解析json------>转换成NSDictionary或者是NSArray//在iOS5.0之前解析json数据使用..
分类:
Web程序 时间:
2015-09-02 19:22:35
阅读次数:
166
JSON解析步骤:- (NSArray *)products{ if (_products == nil) {//第一步:获取JSON文件的路径:NSString *path = [[NSBundle mainBundle]pathForResource:@"products.json" ofTyp...
分类:
移动开发 时间:
2015-08-31 21:26:38
阅读次数:
161
导入一个plist文件 里面是一个数组,每一个数组元素是一个字典,字典元素包括 icon 和 tittle-(NSArray *)pic{ if (_pic == nil) { NSString * path = [[NSBundle mainBundle] pathForResource:@"pi...
分类:
其他好文 时间:
2015-08-30 14:08:02
阅读次数:
115
//初始化url NSURL *url = [NSURL fileURLWithPath:[[NSBundle mainBundle] pathForResource:@"abc" ofType:@"mp4"]]; //初始化播放视频 moviePlayer =[[MPMoviePlayerCo.....
分类:
其他好文 时间:
2015-08-27 20:49:58
阅读次数:
133