Possible Duplicate:
What are the details of “Objective-C Literals” mentioned in the Xcode 4.4 release notes?
I've got question about @[] and @{}.
Some code taken from internet:
self.searches = [@[] mutableCopy];
self.searchResults = [@{} mutableCopy];
- Is
@[]equal to[NSMutableDictionary dictionary]? - Is
@{}equal to[NSMutableArray array]?