最近在使用[[NSBundle mainBundle] pathForResource:@"name" ofType:@"type"]时,找不到其对应的文件,文件当时是通过 右键->add files to 的方式添加到工程里面的,但是使用[[NSBundle mainBundle] pathFor...
分类:
其他好文 时间:
2014-07-26 00:01:46
阅读次数:
455
1.加载RowView.xib文件,创建Objects下面的所有控件: NSArray *views = [[NSBundle mainBundle] loadNibNamed:@"RowView" owner:nil options:nil]; 2.取出xib中的第一个子控件: UIView...
分类:
其他好文 时间:
2014-07-25 16:31:51
阅读次数:
272
NSString* localPath = [[NSBundle mainBundle] pathForResource:@"1" ofType:@"jpg"];
NSURL* fileUrl = [NSURL fileURLWithPath:localPath];
CIImage* image = [CIImage imageWithContentsOfURL:fileUrl];...
分类:
移动开发 时间:
2014-07-18 16:31:23
阅读次数:
408
1. 背景音乐1> 添加AVFoundation.framework框架,import该框架头文件2> 加载背景音乐路径 NSString *path = [[NSBundle mainBundle] pathForResource:@”music.mp3” ofType:nil];3> 路径转化....
分类:
其他好文 时间:
2014-07-16 18:42:21
阅读次数:
220
1.获得项目中info.plist文件的内容1> [NSBundle mainBundle].infoDictionary2> 版本号在info.plist中的key:kCFBundleVersionKey2.沙盒的数据存储及读取1> 数据存储: [[NSUserDefaults standardU...
分类:
移动开发 时间:
2014-07-12 00:04:05
阅读次数:
348
如果我们要检测app版本的更新,那么我们必须获取当前运行app版本的版本信息和appstore 上发布的最新版本的信息。当前运行版本信息可以通过info.plist文件中的bundle version中获取:NSDictionary *infoDic = [[NSBundle mainBundle]...
分类:
移动开发 时间:
2014-07-06 15:21:31
阅读次数:
189
1,仅加载图片,图像数据不会缓存。NSString *path = [[NSBundle mainBundle] pathForResource:@”icon” ofType:@”png”]; UIImage *image = [UIImage imageWithContentsOfFile:pa....
分类:
其他好文 时间:
2014-06-28 11:43:47
阅读次数:
177
APP开发学习//添加xib文件到窗口中NSArray *views = [[NSBundle mainBundle]loadNibNamed:@"View" owner:self options:nil];[self.window addSubview:[views lastObject]];//...
分类:
移动开发 时间:
2014-06-27 22:34:23
阅读次数:
320
// IOS相应路径 NSString* bundlePath = [[NSBundle mainBundle] bundlePath]; NSLog(@"bundlePath = %@", bundlePath);// documents NSString* documentsDirec...
分类:
移动开发 时间:
2014-06-20 21:41:56
阅读次数:
250
NSData *gifFile = [NSData dataWithContentsOfFile:[[NSBundle mainBundle] pathForResource:@"text" ofType:@"gif"]]; _mywebview.scalesPageToFit = YES;...
分类:
Web程序 时间:
2014-06-20 16:16:58
阅读次数:
226