这里有两张设置的方法 第一种:引入UIImageView的子类SCGIFImageView(自定义的类) #import "SCGIFImageView.h" NSString* filePath = [[NSBundle mainBundle] pathForResource:@"750-611" ...
分类:
其他好文 时间:
2016-10-13 19:20:33
阅读次数:
197
点击(此处)折叠或打开 NSString* path = [[NSBundle mainBundle] pathForResource:@"sample" ofType:@"xml"]; NSLog(@"path=%@",path); NSError *error=nil; NSString* fi ...
分类:
其他好文 时间:
2016-09-02 00:31:06
阅读次数:
114
UIWebView加载工程本地网页与本地图片 - (void)viewDidLoad { [super viewDidLoad]; NSString *filePath = [[NSBundle mainBundle]pathForResource:@"1" ofType:@"html"]; NSS ...
分类:
移动开发 时间:
2016-08-05 19:37:04
阅读次数:
245
UIImage加载图片的方式以及Images.xcassets对于加载方法的影响 重点: Images.xcassets中的图片资源只能通过imageNamed:方法加载,通过NSBundle的pathForResource:ofType:无法获得图片路径。因此,Images.xcassets只适合 ...
分类:
其他好文 时间:
2016-07-04 20:20:18
阅读次数:
129
在处理XML的过程中,在项目中手动创建名为“data.xml”的文件,加入网上找的内容 然后xcode加载data.xml中的内容 执行没有任何结果。 估计原因是elementsForDogs元素个数为0,没有进入for循环。打印elementsForDogs的元素总数,结果真的是0。然后往上查找, ...
分类:
移动开发 时间:
2016-06-16 20:04:43
阅读次数:
1452
/** 本地加载方式加载JS*/ NSString *path = [[NSBundle mainBundle] pathForResource:@"jquery.js" ofType:nil]; NSString *path2 = [[NSBundle mainBundle] pathForRes ...
分类:
Web程序 时间:
2016-06-03 18:55:55
阅读次数:
238
初学iOS开发的同学,不管是自己写的,还是粘贴的代码,或多或少都写过下面的代码 [[NSBundle mainBundle] pathForResource:@"someFileName" ofType:@"yourFileExtension"]; [YourViewController initW ...
分类:
其他好文 时间:
2016-05-25 14:48:26
阅读次数:
126
1、[NSBundle mainBundle],文件夹其实是Group,如左侧的树形文件管理器 Build之后,文件直接就复制到了根目录下,于是读取的方法,应该是这样: NSString *earth = [[NSBundle mainBundle] pathForResource:@"Brad C ...
分类:
移动开发 时间:
2016-05-13 07:46:48
阅读次数:
179
NSString *path=[[NSBundle mainBundle]pathForResource:@"测试一" ofType:@"docx"]; //获取内容 NSData *data = [[NSData alloc]initWithContentsOfFile:path]; NSStri ...
分类:
Web程序 时间:
2016-04-27 01:45:01
阅读次数:
278
UIWebView加载工程本地网页与本地图片- (void)viewDidLoad{ [super viewDidLoad]; NSString *filePath = [[NSBundle mainBundle]pathForResource:@"1" ofType:@"html"]; NSStr ...
分类:
Web程序 时间:
2016-04-22 18:27:33
阅读次数:
164