Comment on Show HN: Morning, a minimal dashboard app for iPadparentComments−interpol_p13yIndexed subscripting is available down to iOS 4.x I think — definitely available on iOS 5. It's a compiler technology, not related to the SDK.−conradev13yNo, declaring literals is a compiler technology that works with any SDK.Subscripting requires runtime support in the form of `-[NSDictionary objectForKeyedSubscript:]` and pals , available only in iOS6 and above:http://developer.apple.com/library/ios/documentation/cocoa/r...:−interpol_p13yThank you for the correction — I was thinking of ARC and weak references when I made that comment.−conradev13yActually, I stand corrected, indexed subscripting works back to iOS 5:https://developer.apple.com/library/ios/#releasenotes/Object...
Comments
Indexed subscripting is available down to iOS 4.x I think — definitely available on iOS 5. It's a compiler technology, not related to the SDK.
No, declaring literals is a compiler technology that works with any SDK.
Subscripting requires runtime support in the form of `-[NSDictionary objectForKeyedSubscript:]` and pals , available only in iOS6 and above:
http://developer.apple.com/library/ios/documentation/cocoa/r...:
Thank you for the correction — I was thinking of ARC and weak references when I made that comment.
Actually, I stand corrected, indexed subscripting works back to iOS 5:
https://developer.apple.com/library/ios/#releasenotes/Object...