加载plist文件里面的内容

2016-08-10  本文已影响20人  沙漠骑士

有时候可以直接使用plist来作为数据源,避免了一大段的文字信息在项目中

@property (strong,nonatomic)NSArray *themeData;//定义一个属性

NSString *path = [[NSBundle mainBundle]pathForResource:@"settingsMnueData" ofType:@"plist"];
    NSArray *array = [NSArray arrayWithContentsOfFile:path];

    NSMutableArray *mutableArray = [NSMutableArray array];
    for (NSDictionary *dic in array) {
        YLSetingTheme *theme = [YLSetingTheme setingThemeWithDic:dic];
        [mutableArray addObject:theme];
    }
    self.themeData = mutableArray;

根据plist里面的是array就用Array接受,是dictionary就用dictionary接收,更具实际情况而定


实例截图

我的主页
沙漠骑士

上一篇 下一篇

猜你喜欢

热点阅读