-
读取plist文件
- //取得mainBundle
- NSBundle *bundle = [NSBundle mainBundle];
-
- //取得文件路径
- NSString *plistPath = [bundle pathForResource:@"文件名" ofType:@"plist"];
-
- //也可以写成
- NSString *plistPath = [[NSBundle mainBundle] pathForResource:@"文件名" ofType:@"plist"];
-
- //读取到一个NSDictionary
- NSDictionary *dictionary = [[NSDictionary alloc] initWithContentsOfFile:plistPath];
-
- //读取到一个NSArray
- NSArray *array = [[NSArray alloc] initWithContentsOfFile:plistPath];
-
相关阅读:
七。进度管理
六。质量管理
五。项目范围管理
四。项目整体管理
三。项目立项管理
二。项目的一般只知识
一。项目管理的管理领域
8.BGP
英语词汇基础
vim中输入tab符
-
原文地址:https://www.cnblogs.com/tongdengquan/p/6090558.html
Copyright © 2020-2023
润新知