-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathSSYFoo.m
48 lines (32 loc) · 947 Bytes
/
SSYFoo.m
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
42
43
44
45
46
47
48
#import "SSYFoo.h"
#if SSY_FOO_INCLUDED
static NSInteger static_nextSerialNumber = 0 ;
@interface SSYFoo ()
@property (assign) NSInteger serialNumber ;
@property (retain) NSString* identifier ;
@end
@implementation SSYFoo
@synthesize serialNumber = m_serialNumber ;
@synthesize identifier = m_identifier ;
- (id)initWithIdentifier:(NSString*)identifier {
self = [super init] ;
if (self) {
[self setSerialNumber:++static_nextSerialNumber] ;
[self setIdentifier:identifier] ;
}
NSLog(@"Initted Foo %ld %@ %p", (long)[self serialNumber], [self identifier], self) ;
return self ;
}
+ (SSYFoo*)fooWithIdentifier:(NSString*)identifier {
return [[[SSYFoo alloc] initWithIdentifier:identifier] autorelease] ;
}
- (void)dealloc {
NSLog(@"Dealloc: Foo %ld %@ %p", (long)[self serialNumber], [self identifier], self) ;
[m_identifier release] ;
[super dealloc] ;
}
+ (void)log:(NSString*)msg {
NSLog(@"%@", msg) ;
}
@end
#endif