首页 > 其他 > 详细

快速生成plist文件

时间:2015-08-04 22:49:23      阅读:322      评论:0      收藏:0      [点我收藏+]

在一个项目中,我们会经常用到许多plist文件,但是你怎么快速生成plist 文件吗?我给你提供一个方法。

 NSArray *title = [[NSArray alloc]initWithObjects:@"限免",@"降价",@"免费",@"专题",@"热榜", nil];

    NSArray *iconName= [[NSArray alloc] initWithObjects:@"tabbar_limitfree",@"tabbar_reduceprice",@"tabbar_appfree",@"tabbar_subject",@"tabbar_rank" ,nil];

    NSArray *className = [[NSArray alloc] initWithObjects:@"LViewController",@"RViewController",@"FViewController",@"SViewController",@"HViewController", nil];

   

    

    NSMutableArray *all = [[NSMutableArray alloc]initWithCapacity:0];

    

    for (int i = 0; i<title.count; i++) {

        //以键值对的方法 生成一个字典

        NSDictionary *dict = [[NSDictionary alloc]initWithObjectsAndKeys:[title objectAtIndex:i],@"title",[iconName objectAtIndex:i],@"iconName",[className objectAtIndex:i],@"className", nil];

        [all addObject:dict];

    }

    //NSString *tempPath = NSTemporaryDirectory();

    NSString *tempPath= @"/Users/Desktop/";

    NSString *path = [tempPath stringByAppendingPathComponent:@"Controllers.plist"];

    NSLog(@"%@",path);

    [all writeToFile:path atomically:YES];

 

快速生成plist文件

原文:http://www.cnblogs.com/PengFei-N/p/4703281.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!