@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'影響'名稱'?我的意思是它是否也釋放了「名稱」?我在另一篇文章中看到,這是一種不好的做法?但爲什麼?Objective C的基本原理C
編輯:ARC被禁用。
謝謝,我明白了! – Tahlil