码迷,mamicode.com
首页 >  
搜索关键字:pathforresource    ( 126个结果
iOS开发里的Bundle是个啥玩意?!
初学iOS开发的同学,不管是自己写的,还是粘贴的代码,或多或少都写过下面的代码[[NSBundlemainBundle]pathForResource:@"someFileName"ofType:@"yourFileExtension"];[YourViewControllerinitWithNib...
分类:移动开发   时间:2015-08-04 18:52:25    阅读次数:163
CSV解析
NSString *path = [[NSBundle mainBundle] pathForResource: @"type" ofType:@"csv"]; NSString* fileContents = [NSString stringW...
分类:其他好文   时间:2015-07-26 17:07:08    阅读次数:128
JSON 数据的系统解析
- (IBAction)jsonSystemButtonDidClicked:(UIButton *)sender { self.JSONArray = [NSMutableArray array]; // 1、拿到 json 文件的路径 NSString *path = [[NSBundle mainBundle] pathForResource:@"student" ofTy...
分类:Web程序   时间:2015-07-20 19:37:50    阅读次数:98
iOS开发,UIWebview与H5之间的交互
导语:随着微信的不断推广,在移动开发的过程中原生与H5的混合开发在移动开发中占据着越来越重要的地位;下面我给大家分享一下我在混合开发中的心得!将HTML页面加载到UIWebview控件中:A:本地加载:NSString*webPath=[[NSBundlemainBundle]pathForResource:@“HelloWord"ofTy..
分类:移动开发   时间:2015-07-14 20:40:24    阅读次数:534
iOS 运行时判断xib是否存在
知识要点 1. xib最终会变成nib文件2. NSBundle实例方法 - (NSString *)pathForResource:(NSString *)name ofType:(NSString *)ext; 如果bundle中不存在某个文件,则返回的path为nil,如果存在 则会返回该文....
分类:移动开发   时间:2015-07-09 19:34:00    阅读次数:1769
ios 保存本地数据的方法
1。NSString *path = [[NSBundle mainBundle] pathForResource:@"文件名"ofType:@"plist"];// 文件数据类型是arrayNSArray *array=[NSArray arrayWithContentsOfFile:path];...
分类:移动开发   时间:2015-07-08 00:06:48    阅读次数:162
IOS的一些小技巧
1.播放短声音 SystemSoundID shake_sound_male_id = 0; NSString *thesoundFilePath = [[NSBundle mainBundle] pathForResource:@"ReceivedMessage" ofType:@"...
分类:移动开发   时间:2015-07-06 21:31:19    阅读次数:129
PDF的显示和浏览
利用webview-(void)loadDocument:(NSString*)documentNameinView:(UIWebView*)webView { NSString*path=[[NSBundlemainBundle]pathForResource:documentNameofType...
分类:其他好文   时间:2015-06-10 22:19:59    阅读次数:117
iOS 用GDataXMLNode创建和解析XML
原文地址:http://blog.csdn.net/gf771115/article/details/7718403NSError *error;// NSString *path = [[NSBundle mainBundle] pathForResource:@"testxml" ofType....
分类:移动开发   时间:2015-06-05 15:44:25    阅读次数:203
iOS使用CoreImage处理图像40中可用的滤镜名称
NSString* localPath = [[NSBundle mainBundle] pathForResource:@"1" ofType:@"jpg"]; NSURL* fileUrl = [NSURL fileURLWithPath:localPath]; CIImage* ...
分类:移动开发   时间:2015-06-04 13:42:04    阅读次数:257
126条   上一页 1 ... 5 6 7 8 9 ... 13 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!