且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

AFNetworking 2.0响应中的__NSCFArray是什么?

更新时间:2023-01-13 23:23:32

NSArray

NSArray is a class cluster. This basically means that NSArray objects could be made up of one of several different actual implementations and __NSCFArray is one of the classes (probably the most common) that NSArray can use to implement an array.

只需像使用其他NSArray一样使用__NSCFArray,它将正常工作.

Just use the __NSCFArray as you would any other NSArray and it'll work fine.