What is the different between these two when using ARC in Objective-C for iOS?
NSMutableArray *anArray = [[NSMutableArray alloc] initWithArray:itemsArray];
appDelegate.wishlistItemsArray = anArray;
vs
appDelegate.wishlistItemsArray = [NSMutableArray arrayWithArray:itemsArray];
The property in appDelegate is:
@property (nonatomic, strong) NSMutableArray *wishlistItemsArray;