Is objectAtIndexedSubscript available in IOS5?

前端 未结 4 1566
慢半拍i
慢半拍i 2021-01-03 09:25

The documentation says it\'s available in MacOS 1.08.

So what\'s the story? What about for iOS5?

It\'s a very important selector because self[5] will actuall

4条回答
  •  被撕碎了的回忆
    2021-01-03 09:59

    I look at the NSOrderedSet.h file and I saw this:

    - (id)objectAtIndexedSubscript:(NSUInteger)idx NS_AVAILABLE(10_8, 6_0);
    

    So it doesn't work for IOS5.

提交回复
热议问题