今天看别人代码的时候发现这样的用法
navigationController.viewControllers = @[secondViewController];
这里用到了@[]。
刚开始不是很明白,问了才知道,原来这是数组的初始化。是ios6之后引入的方式。mark下。
@[] 初始化不可变数组
@{} 初始化不可变字典
举个例子:
NSArray *testArr = @[@"a", @"b", @"c", @"d"];
NSDictionary *testDic = @{@"a": @"first", @"b": @"second", @"c": @"third" };