@implementation GroupedInexedViewController
{
NSDictionary *names;
}
- (void)viewDidLoad
{
[super viewDidLoad];
NSString *path = [[NSBundle mainBundle] pathForResource:@"PropertyList"
ofType:@"plist"];
NSDictionary *dict = [[NSDictionary alloc] initWithContentsOfFile:path];
names = dict;
[dict release];
}
解除分配'dict'会影响'names'吗?我的意思是它是否也取消分配“名称”?我在另一篇文章中看到这是一种不好的做法?但为什么?
编辑:ARC被禁用。