|
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];
} |
相关文章: