【发布时间】:2010-11-15 16:37:24
【问题描述】:
SomeObject *temp = [[SomeObject alloc] init]
self.theObject = temp;
[temp release];
为什么总是这样?为什么不
self.theObject = [[SomeObject alloc] init];
【问题讨论】:
标签: iphone objective-c properties object-initialization