iOS OC C

数据持久化

XML列表

920 发布: 2015/12/6 03:44 本文总阅读量

直接代码

#import "ViewController.h"

@interface ViewController ()

@end

@implementation ViewController

- (void)viewDidLoad {

    [super viewDidLoad];

    //XML属性列表
    NSString *path = NSHomeDirectory();
    NSLog(@"%@",path);
    NSString *file_path = [path stringByAppendingPathComponent:@"Documents"];
    NSDictionary *dic = @{@"name":@"小明",
                          @"age":@"24",
                          @"score":@"98"};
    NSString *file = [file_path stringByAppendingPathComponent:@"student.plist"];
    [dic writeToFile:file atomically:YES];
}
@end

新浪博客的图片丢失了 新浪博客的图片丢失了

新浪博客的原始图片丢失了

说明:控制台打印为plist文件路径也就是左边展示的plist文件。