最近因为项目需求,需要将一些自定义的类序列化为JSON,网上有很多好用的第三方序列化工具,但都只能
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
@interface Foo : NSObject
 
{
 
  NSString *_property1;
 
  NSString *_property2;
 
}
 
@property(nonatomic,retain)NSString *property1;
 
@property(nonatomic,retain)NSString *property2;
 
  
 
@implementation Foo
 
@synthesize property1 = _property1;
@synthesize property2 = _property2;
 
- (id)init
{
    self = [super init];
     
    if (self)
    {
        _property1 = @"haha";
        _property2 = @"hehe";
    }
 
    return self;
}
 
- (void)dealloc
 
{
 
  [super dealloc];
 
}

相关文章:

  • 2021-10-11
  • 2021-07-30
  • 2022-12-23
  • 2022-12-23
  • 2021-11-10
  • 2022-01-19
  • 2021-09-03
猜你喜欢
  • 2022-12-23
  • 2021-11-19
  • 2022-12-23
  • 2021-06-14
  • 2021-09-05
  • 2021-09-23
  • 2022-12-23
相关资源
相似解决方案