初学iOS开发的同学,不管是自己写的,还是粘贴的代码,或多或少都写过下面的代码[[NSBundlemainBundle]pathForResource:@"someFileName"ofType:@"yourFileExtension"];[YourViewControllerinitWithNib...
分类:
移动开发 时间:
2015-08-04 18:52:25
阅读次数:
163
NSString *path = [[NSBundle mainBundle] pathForResource: @"type" ofType:@"csv"]; NSString* fileContents = [NSString stringW...
分类:
其他好文 时间:
2015-07-26 17:07:08
阅读次数:
128
- (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
导语:随着微信的不断推广,在移动开发的过程中原生与H5的混合开发在移动开发中占据着越来越重要的地位;下面我给大家分享一下我在混合开发中的心得!将HTML页面加载到UIWebview控件中:A:本地加载:NSString*webPath=[[NSBundlemainBundle]pathForResource:@“HelloWord"ofTy..
分类:
移动开发 时间:
2015-07-14 20:40:24
阅读次数:
534
知识要点 1. xib最终会变成nib文件2. NSBundle实例方法 - (NSString *)pathForResource:(NSString *)name ofType:(NSString *)ext; 如果bundle中不存在某个文件,则返回的path为nil,如果存在 则会返回该文....
分类:
移动开发 时间:
2015-07-09 19:34:00
阅读次数:
1769
1。NSString *path = [[NSBundle mainBundle] pathForResource:@"文件名"ofType:@"plist"];// 文件数据类型是arrayNSArray *array=[NSArray arrayWithContentsOfFile:path];...
分类:
移动开发 时间:
2015-07-08 00:06:48
阅读次数:
162
1.播放短声音 SystemSoundID shake_sound_male_id = 0; NSString *thesoundFilePath = [[NSBundle mainBundle] pathForResource:@"ReceivedMessage" ofType:@"...
分类:
移动开发 时间:
2015-07-06 21:31:19
阅读次数:
129
利用webview-(void)loadDocument:(NSString*)documentNameinView:(UIWebView*)webView { NSString*path=[[NSBundlemainBundle]pathForResource:documentNameofType...
分类:
其他好文 时间:
2015-06-10 22:19:59
阅读次数:
117
原文地址:http://blog.csdn.net/gf771115/article/details/7718403NSError *error;// NSString *path = [[NSBundle mainBundle] pathForResource:@"testxml" ofType....
分类:
移动开发 时间:
2015-06-05 15:44:25
阅读次数:
203
NSString* localPath = [[NSBundle mainBundle] pathForResource:@"1" ofType:@"jpg"]; NSURL* fileUrl = [NSURL fileURLWithPath:localPath]; CIImage* ...
分类:
移动开发 时间:
2015-06-04 13:42:04
阅读次数:
257