在 iOS 的 Objective-C 中使用 ARC 时,这两者有什么不同?
NSMutableArray *anArray = [[NSMutableArray alloc] initWithArray:itemsArray];
appDelegate.wishlistItemsArray = anArray;
对比
appDelegate.wishlistItemsArray = [NSMutableArray arrayWithArray:itemsArray];
appDelegate 中的属性是:
@property (nonatomic, strong) NSMutableArray *wishlistItemsArray;