【发布时间】:2011-08-04 02:39:33
【问题描述】:
场景1:
NSDictionary *dictionary =
[[NSDictionary alloc] initWithContentsOfFile:plistPath];
self.stateZips = dictionary;
[dictionary release];
场景2:
self.stateZips = [[NSDictionary alloc] initWithContentsOfFile:plistPath];
【问题讨论】:
标签: objective-c memory-management