IOS加载音频文件 需要导入#import 1 NSString *path = [[NSBundle mainBundle] pathForResource:@"胭脂泪" ofType:@"mp3"]; //把音频文件转换成url格式 2 3 NSURL *urlStr ...
分类:
移动开发 时间:
2015-12-25 19:00:25
阅读次数:
400
一、数据来源1.来源于mainBundle2.来源于服务器二、解析步骤`1.数据来源于mainBundle//读取数据 NSString *jsonPath = [[NSBundle mainBundle] pathForResource:@"test.json" ofType:nil];解析数据(...
分类:
Web程序 时间:
2015-12-18 00:05:57
阅读次数:
310
NSBundle、NSArray、NSDictionay读取plist文件NSDictionary*dict= [NSDictionarydictionaryWithContentsOfFile:[[NSBundlemainBundle]pathForResource:@"fileName"ofTy...
分类:
其他好文 时间:
2015-12-17 23:56:01
阅读次数:
156
ios开发中会用到plist保存数据,读取plist数据只需要一行代码就行:NSArray * appInfos = [NSArray arrayWithContentsOfFile:[[NSBundle mainBundle] pathForResource:@"appslist" ofType:...
分类:
移动开发 时间:
2015-12-07 00:24:04
阅读次数:
156
1 -(NSArray *)tgs 2 { 3 NSString *path = [[NSBundle mainBundle]pathForResource:@"tgs" ofType:@"plist"]; 4 NSMutableArray *tgsArray = [NSMutab...
分类:
其他好文 时间:
2015-12-04 14:32:25
阅读次数:
199
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
1.播放音效 1.1 首先获取到音效文件路径 1 NSString *path = [[NSBundle mainBundle] pathForResource:soundFileName ofType:nil]; 1.2 将音效文件路径转换为NSURLNSURL *url = [NSURL ...
分类:
移动开发 时间:
2015-11-08 20:36:43
阅读次数:
174
使用initWithContentsOfFile可以优先选择3x图像,而不是2x图像。 NSString?*path = [[NSBundle?mainBundle]?pathForResource:@"smallcat"?ofType:@"png"]; UIImage?*image = [[UIImage?alloc]initWithConte...
分类:
其他好文 时间:
2015-11-06 16:33:05
阅读次数:
241
http://blog.csdn.net/yangxuanlun/article/details/8938148
分类:
其他好文 时间:
2015-10-23 16:45:49
阅读次数:
143