1.一般可以使用属性列表文件存储NSArray或者NSDictionary之类的数据,这种“属性列表文件”的扩展名是plist,因此也称为“plist文件” 2.接下来通过代码来解析Plist文件中的数据获得Plist文件的全路径NSBundle *bundle = [NSBundle mainBu ...
分类:
其他好文 时间:
2016-09-24 11:48:04
阅读次数:
181
1.获取app的info.plist详细信息版本号:Bundle version NSString *version = [[[NSBundle mainBundle] infoDictionary] objectForKey:@"CFBundleVersion"];应用标识:Bundle iden ...
分类:
移动开发 时间:
2016-09-07 12:45:17
阅读次数:
170
点击(此处)折叠或打开 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
NSString *CurPath = [[NSBundle mainBundle] bundlePath]; NSString *xmlPath = [CurPath stringByAppendingPathComponent:@"/Contents/Info.plist"]; NSMutabl ...
分类:
其他好文 时间:
2016-08-29 09:08:52
阅读次数:
115
- (void)clearAllUserDefaultsData { NSString *appDomain = [[NSBundle mainBundle] bundleIdentifier]; [[NSUserDefaults standardUserDefaults] removePersis ...
分类:
其他好文 时间:
2016-08-29 09:06:07
阅读次数:
145
属性: 链接: IOS 之 NSBundle 方法详解 ...
分类:
其他好文 时间:
2016-08-26 10:24:08
阅读次数:
263
iOS开发基础知识--碎片9 1:两种方法删除NSUserDefaults所有记录 //方法一 NSString *appDomain = [[NSBundle mainBundle] bundleIdentifier]; [[NSUserDefaults standardUserDefaults] ...
分类:
移动开发 时间:
2016-08-20 16:22:18
阅读次数:
297
UIWebView加载工程本地网页与本地图片 - (void)viewDidLoad { [super viewDidLoad]; NSString *filePath = [[NSBundle mainBundle]pathForResource:@"1" ofType:@"html"]; NSS ...
分类:
移动开发 时间:
2016-08-05 19:37:04
阅读次数:
245
NSDictionary *infoDictionary = [[NSBundle mainBundle] infoDictionary]; CFShow(infoDictionary); // app名称 NSString *app_Name = [infoDictionary objectFor ...
分类:
移动开发 时间:
2016-08-05 15:59:57
阅读次数:
208