码迷,mamicode.com
首页 >  
搜索关键字:pathforresource    ( 126个结果
IOS 多媒体加载 加载音频 AVAudioPlayer
IOS加载音频文件 需要导入#import 1 NSString *path = [[NSBundle mainBundle] pathForResource:@"胭脂泪" ofType:@"mp3"]; //把音频文件转换成url格式 2 3 NSURL *urlStr ...
分类:移动开发   时间:2015-12-25 19:00:25    阅读次数:400
parse Json
一、数据来源1.来源于mainBundle2.来源于服务器二、解析步骤`1.数据来源于mainBundle//读取数据 NSString *jsonPath = [[NSBundle mainBundle] pathForResource:@"test.json" ofType:nil];解析数据(...
分类:Web程序   时间:2015-12-18 00:05:57    阅读次数:310
NSBundle、NSArray、NSDictionay
NSBundle、NSArray、NSDictionay读取plist文件NSDictionary*dict= [NSDictionarydictionaryWithContentsOfFile:[[NSBundlemainBundle]pathForResource:@"fileName"ofTy...
分类:其他好文   时间:2015-12-17 23:56:01    阅读次数:156
iOS开发读取plist内容
ios开发中会用到plist保存数据,读取plist数据只需要一行代码就行:NSArray * appInfos = [NSArray arrayWithContentsOfFile:[[NSBundle mainBundle] pathForResource:@"appslist" ofType:...
分类:移动开发   时间:2015-12-07 00:24:04    阅读次数:156
字典转模型的三种方法之二:KVC
1 -(NSArray *)tgs 2 { 3 NSString *path = [[NSBundle mainBundle]pathForResource:@"tgs" ofType:@"plist"]; 4 NSMutableArray *tgsArray = [NSMutab...
分类:其他好文   时间:2015-12-04 14:32:25    阅读次数:199
进击的UI------------------- Plist&自定义Cell
1.plistNSString *filePath = [[NSBundle mainBundle]pathForResource:@"name" ofType:@"plist"];NSDictionary *dict = [NSDictionary dictionaryWithContentsOf...
分类:其他好文   时间:2015-11-21 18:31:25    阅读次数:185
视屏播放
-(void)playMovie:(NSString*)fileName{//视频文件路径NSString*path=[[NSBundlemainBundle]pathForResource:fileNameofType:@"mp4"];//视频URLNSURL*url=[NSURLfileURLW...
分类:其他好文   时间:2015-11-16 22:51:47    阅读次数:185
IOS播放音乐和音效
1.播放音效 1.1 首先获取到音效文件路径 1 NSString *path = [[NSBundle mainBundle] pathForResource:soundFileName ofType:nil]; 1.2 将音效文件路径转换为NSURLNSURL *url = [NSURL ...
分类:移动开发   时间:2015-11-08 20:36:43    阅读次数:174
关于@2x和@3x
使用initWithContentsOfFile可以优先选择3x图像,而不是2x图像。 NSString?*path = [[NSBundle?mainBundle]?pathForResource:@"smallcat"?ofType:@"png"]; UIImage?*image = [[UIImage?alloc]initWithConte...
分类:其他好文   时间:2015-11-06 16:33:05    阅读次数:241
关于[[NSBundle mainBundle] pathForResource:@"name"
http://blog.csdn.net/yangxuanlun/article/details/8938148
分类:其他好文   时间:2015-10-23 16:45:49    阅读次数:143
126条   上一页 1 2 3 4 5 6 ... 13 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!