IOS 读取项目中的plist文件
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了IOS 读取项目中的plist文件相关的知识,希望对你有一定的参考价值。
在项目中,经常需要读取配置文件,现在就来看看读取plist配置文件的代码
NSBundle *bundle = [NSBundle mainBundle]; NSString *plistPath = [bundle pathForResource:@"fileName" ofType:@"plist"]; NSDictionary *dict = [[NSDictionary alloc]initWithContentsOfFile:plistPath];
以上是关于IOS 读取项目中的plist文件的主要内容,如果未能解决你的问题,请参考以下文章
iOS项目开发实战——学会使用TableView列表控件plist读取与Section显示
从 iOS 的 UITests 中读取 Info.plist?