``` NSData * data = [NSData dataWithContentsOfFile:[[NSBundle mainBundle] pathForResource:@"demo001" ofType:@"json"]]; NSLog(@"第一个输出%@",data); id json... ...
分类:
Web程序 时间:
2018-04-09 13:04:49
阅读次数:
218
项目中有些页面,我采用了html页面开发,然后用wkwebview加载的设计。在加载过程中遇见了一些问题,在这里进行一些记载和讨论。如有不同意见欢迎进行评论沟通。 问题时候这样的: 在webview的loadrequest中不能加载出来 获取html的代码: 1. pathForResource 结 ...
分类:
Web程序 时间:
2017-12-07 13:28:56
阅读次数:
189
本文只针对通过NSBundle对象的方法pathForResource获取本地图片资源遇到的图片名无法自动识别@2x与@3x名称的问题进行测试、总结与分享。
加载本地图片资源的方式一般通过以下两种方法:
第1种:
UIImage*img=[UIImagep_w_picpathNamed:@"p_w_picpathName"];
第2种:
U..
分类:
移动开发 时间:
2017-11-16 11:34:52
阅读次数:
214
// 播放音乐 NSString *path = [[NSBundle mainBundle] pathForResource:@"1670" ofType:@"mp3"]; NSError * error; self.avaPlayer= [[AVAudioPlayer alloc] initWi ...
分类:
移动开发 时间:
2017-10-17 12:21:05
阅读次数:
183
1 //读取plist文件的数据 2 NSString *plistPath = [[NSBundle mainBundle] pathForResource:@"province" ofType:@"plist"]; 3 NSMutableDictionary *data = [[NSMutabl... ...
分类:
其他好文 时间:
2017-10-16 21:39:51
阅读次数:
185
有很多人在设置plist文件的时候, 会发现读取不了plist文件里面的内容, 返回值为nil, 下面我们来解决一下这个问题. 首先我们打开工程并且按照下面的步骤来设置: 设置好后, 我们来写一段代码测试一下看看是否添加好: NSBundle *bundle = [NSBundle mainBund ...
分类:
其他好文 时间:
2017-06-29 00:50:33
阅读次数:
153
蓝色文件访问 NSString * path = [[NSBundle mainBundle]pathForResource:@"one/two/two" ofType:@"html"]; NSString *html = [NSString stringWithContentsOfFile:pat ...
分类:
其他好文 时间:
2017-05-25 13:42:42
阅读次数:
133
音乐播放 NSString *path = [[NSBundle mainBundle] pathForResource:@"预谋" ofType:@"mp3"]; if (path) { NSURL *url = [NSURL fileURLWithPath:path]; player= [[AV ...
分类:
移动开发 时间:
2017-04-29 12:53:25
阅读次数:
230
photo = [MWPhotophotoWithURL:[NSURLfileURLWithPath:[[NSBundlemainBundle]pathForResource:@"photo2"ofType:@"jpg"]]]; photo.caption =@"The London Eye is ...
分类:
其他好文 时间:
2016-11-12 01:37:37
阅读次数:
461
NSString*starsPath=[[NSBundlemainBundle]pathForResource:@"star"ofType:@"png"];UIImage*theImage=[[UIImagealloc]initWithContentsOfFile:starsPath];theImage=[theImagep_w_picpathWithRenderingMode:UIImageRenderingModeAlwaysTemplate];stars.tintColor=[UIColororange..
分类:
其他好文 时间:
2016-10-25 19:49:39
阅读次数:
167