iOS 6 PTL: Chapter 2 Errata
We made a typo in Chapter 2, section Collection Literals. The syntax for creating a new NSDictionary was written as NSDictionary *dict = @[@"key1":@"value1", @"key2":@"value2", @"key2":@"value2"] The correct syntax is NSDictionary *dict = @{ @"key1":@"value1",...
Read More