码迷,mamicode.com
首页 > 移动开发 > 详细

ios8 创建plist

时间:2014-09-23 11:38:34      阅读:165      评论:0      收藏:0      [点我收藏+]

标签:io   os   ar   for   sp   on   c   ef   r   

+ (NSString *)getFilePath

{

    NSString *path = [[NSSearchPathForDirectoriesInDomains(NSDocumentDirectory,NSUserDomainMask,YES) objectAtIndex:0] stringByAppendingPathComponent:@"photo.plist"];

    if ([[NSFileManager defaultManager] fileExistsAtPath:path] == NO)

    {

        NSFileManager* fileManager = [NSFileManager defaultManager];

        //if(IOS7)

        [fileManager createFileAtPath:@"photo.plist" contents:nil attributes:nil];

        //if(IOS8)

        [fileManager createFileAtPath:path contents:nil attributes:nil];

        NSMutableArray *photoPathArray = [NSMutableArray array];

        [photoPathArray writeToFile:path atomically:YES];

    }

    return path;

}


ios8 创建plist

标签:io   os   ar   for   sp   on   c   ef   r   

原文地址:http://my.oschina.net/751547752/blog/317217

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!