- 源代码下载链接:
04-plis属性列表.zip
27.8 KB
-
- //
- // MJPerson.h
-
// 04-plis属性列表
- //
- // Created by apple on 13-12-11.
-
// Copyright (c) 2013年itcast. All rights reserved.
- //
-
#import<Foundation/Foundation.h>
-
@interfaceMJPerson : NSObject
-
@property(nonatomic,copy) NSString *name;
- @end
-
- //
- // MJPerson.m
-
// 04-plis属性列表
- //
- // Created by apple on 13-12-11.
-
// Copyright (c) 2013年itcast. All rights reserved.
- //
-
#import"MJPerson.h"
-
@implementationMJPerson
- @end
-
// QQViewController.h
Map
|
- //
- // QQViewController.h
-
// 04-plis属性列表
- //
- // Created by apple on 13-12-11.
-
// Copyright (c) 2013年itcast. All rights reserved.
- //
-
#import<UIKit/UIKit.h>
-
@interfaceQQViewController : UIViewController
- @end
-
// QQViewController.m
Map
|
- //
- // QQViewController.m
-
// 04-plis属性列表
- //
- // Created by apple on 13-12-11.
-
// Copyright (c) 2013年itcast. All rights reserved.
- //
-
#import"QQViewController.h"
-
#import"MJPerson.h"
-
@interfaceQQViewController ()
- @end
-
@implementationQQViewController
-
- (void)viewDidLoad
- {
-
[superviewDidLoad];
-
- // NSArray *array = @[@"4343", @"gfdgdfg"];
-
-
- MJPerson *p = [[MJPerson alloc] init];
-
p.name =@"jack";
- //本文永久链接,转载请注明出处:http://www.cnblogs.com/ChenYilong/p/3490657.html
-
NSArray *array =@[@{
-
@"name": p.name
-
}];
-
-
[array writeToFile:@"/Users/apple/Desktop/ppp.plist"atomically:YES];
- }
- @end
https://www.evernote.com/shard/s227/sh/198ecac9-0ae1-4107-9424-e906f27edb6b/559b11fa4d1e0949e5df25d9063e1b64
相关文章:
-
2022-12-23
-
2022-12-23
-
2022-02-08
-
2021-06-02
-
2021-09-25
-
2022-01-05
-
2021-07-07
-
2021-12-09