码迷,mamicode.com
首页 >  
搜索关键字:nsbundle    ( 385个结果
plist文件
1.一般可以使用属性列表文件存储NSArray或者NSDictionary之类的数据,这种“属性列表文件”的扩展名是plist,因此也称为“plist文件” 2.接下来通过代码来解析Plist文件中的数据获得Plist文件的全路径NSBundle *bundle = [NSBundle mainBu ...
分类:其他好文   时间:2016-09-24 11:48:04    阅读次数:181
app info.plist
1.获取app的info.plist详细信息版本号:Bundle version NSString *version = [[[NSBundle mainBundle] infoDictionary] objectForKey:@"CFBundleVersion"];应用标识:Bundle iden ...
分类:移动开发   时间:2016-09-07 12:45:17    阅读次数:170
解决 pathForResource 返回 nil的问题
点击(此处)折叠或打开 NSString* path = [[NSBundle mainBundle] pathForResource:@"sample" ofType:@"xml"]; NSLog(@"path=%@",path); NSError *error=nil; NSString* fi ...
分类:其他好文   时间:2016-09-02 00:31:06    阅读次数:114
正确选择图片加载方式能够对内存优化起到很大的作用,常见的图片加载方式有下面三种:
1 2 3 4 5 6 7 //方法1 UIImage *imag1 = [UIImage imageNamed:@"image.png"]; //方法2 UIImage *image2 = [UIImage imageWithContentsOfFile:[[NSBundle mainBundle ...
分类:其他好文   时间:2016-09-01 12:34:19    阅读次数:151
获取info.plist的信息的代码
NSString *CurPath = [[NSBundle mainBundle] bundlePath]; NSString *xmlPath = [CurPath stringByAppendingPathComponent:@"/Contents/Info.plist"]; NSMutabl ...
分类:其他好文   时间:2016-08-29 09:08:52    阅读次数:115
移除所有userDefault信息代码
- (void)clearAllUserDefaultsData { NSString *appDomain = [[NSBundle mainBundle] bundleIdentifier]; [[NSUserDefaults standardUserDefaults] removePersis ...
分类:其他好文   时间:2016-08-29 09:06:07    阅读次数:145
NSBundle
属性: 链接: IOS 之 NSBundle 方法详解 ...
分类:其他好文   时间:2016-08-26 10:24:08    阅读次数:263
iOS开发基础知识--碎片9
iOS开发基础知识--碎片9 1:两种方法删除NSUserDefaults所有记录 //方法一 NSString *appDomain = [[NSBundle mainBundle] bundleIdentifier]; [[NSUserDefaults standardUserDefaults] ...
分类:移动开发   时间:2016-08-20 16:22:18    阅读次数:297
ios加载本地html
UIWebView加载工程本地网页与本地图片 - (void)viewDidLoad { [super viewDidLoad]; NSString *filePath = [[NSBundle mainBundle]pathForResource:@"1" ofType:@"html"]; NSS ...
分类:移动开发   时间:2016-08-05 19:37:04    阅读次数:245
iOS获取当前app的名称和版本号
NSDictionary *infoDictionary = [[NSBundle mainBundle] infoDictionary]; CFShow(infoDictionary); // app名称 NSString *app_Name = [infoDictionary objectFor ...
分类:移动开发   时间:2016-08-05 15:59:57    阅读次数:208
385条   上一页 1 ... 5 6 7 8 9 ... 39 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!