//MARK: - Plist文件相关
extension HomeVC {
//创建“HomePage.plist”文件
func createHomePagePlistFileWithDict(dict:NSDictionary) {
let documentsDirectory = FilePathTool.share.documentPath as NSString
let plistPath = documentsDirectory.appendingPathComponent("HomePage.plist")
dict.write(toFile: plistPath, atomically: true)
}
//获取“HomePage.plist”文件的内容
func getDictFromHomePagePlist() -> NSDictionary {
let plistPath = Bundle.main.path(forResource: "HomePage", ofType: "plist")
let dict = NSDictionary.init(contentsOfFile: plistPath!)
return dict!
}
}
Plist文件的创建与数据获取
©著作权归作者所有,转载或内容合作请联系作者
- 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
- 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
- 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
推荐阅读更多精彩内容
- 《 iOS文件夹与plist文件的创建与删除》 // ViewController.m// fileManager...
- 功能创建一个test.plist文件,textInput作为输入,displayLabel作为显示,有一个按钮来触...