1.读取图片NSString *path = [[NSBundle mainBundle] pathForResource"icon" ofType"png"];myImage = [UIImage imageWithContentsOfFile:path]; 2.更改cell选中的背景 UIVie...
分类:
移动开发 时间:
2015-06-02 21:34:29
阅读次数:
145
解析Json数据1 //加载.json文件2 NSString *path = [[NSBundle mainBundle]pathForResource:@"product.json" ofType:nil];3 //根据路径加载json文件到nsdata中4 NSData *data = [NS...
分类:
移动开发 时间:
2015-06-02 15:01:57
阅读次数:
153
- (NSArray *)groups{ if (_groups == nil) { // NSArray *dictArray = [NSArray arrayWithContentsOfFile:[[NSBundle mainBundle] pathForResource:@"friend...
分类:
移动开发 时间:
2015-05-31 01:18:55
阅读次数:
126
今天在尝试用自带的NSJSONSerialization方法来解析本地json文件的时候碰到了系统异常,app自动终止
问题主要如下:
代码片段:
NSString *newCoursePath = [[NSBundle mainBundle] pathForResource:@"addcourses" ofType:@"json"];
NSData *data = [N...
分类:
Web程序 时间:
2015-05-27 19:12:51
阅读次数:
200
NSPathUtilities,关于文件路径的几个常用操作,熟悉一下,拼接路径什么的,感觉还是挺好使的。
//原路径。随便在项目中添加了张图片,用于测试
NSString *strPath =[[NSBundle mainBundle] pathForResource:@"002" ofType:@"png"];
NSLog(@"path======%@", strPath);
//获取路径的...
分类:
其他好文 时间:
2015-05-06 19:48:35
阅读次数:
172
一
view = [[UIView
alloc] initWithFrame:CGRectMake(0,
0, 100,
100)];
NSString *imagePath =[[NSBundle
mainBundle] pathForResource:@"csjg"
ofType:@"gif"];
CGImageSourceRef cImag...
分类:
移动开发 时间:
2015-04-29 19:52:55
阅读次数:
137
废话少说,直接上代码:
(void)viewDidLoad {
[super viewDidLoad];
//读取plist文件在程序文件夹中的文件,并且要注意,程序文件的文件只能读不能写,只能在程序沙盒之中;
NSString *plistPath = [[NSBundle mainBundle] pathForResource:@"plisttest" o...
分类:
移动开发 时间:
2015-04-26 13:52:58
阅读次数:
145
//saxParse步骤:1.从包中查找文件路径NSString *urlString = [[NSBundle mainBundle] pathForResource:@"Student" ofType:@"xml"];2.根据文件路径生成同一资源定位符NSURL *url = [[NSURL a...
分类:
其他好文 时间:
2015-04-09 00:33:29
阅读次数:
207
iOS开发之XML解析代码 //1.加载和解析XML文件 NSString *path = [[NSBundle mainBundle] pathForResource:@"xml.txt" ofType:nil]; NSData *data = [[NSData alloc] i...
分类:
移动开发 时间:
2015-04-05 14:35:06
阅读次数:
117
声音可以工作在模拟器,然后一些声音(如循环的)已被证明不能工作,设置在模拟器中成功与否取决于音频格式.注:必须使用.wav格式在这个例子中.SystemSoundID pmph;id sndpath = [[NSBundle mainBundle] pathForResource:@"mySound...
分类:
移动开发 时间:
2015-04-01 14:59:58
阅读次数:
163