我想对类型的对象使用快速枚举id
。
基本上我在这里错过了支票:
id object = <get object form somewhere>;
if( <check if object implements fast enumeration> )
for (id item in id<NSFastEnumeration>object)
<process item>
我想对类型的对象使用快速枚举id
。
基本上我在这里错过了支票:
id object = <get object form somewhere>;
if( <check if object implements fast enumeration> )
for (id item in id<NSFastEnumeration>object)
<process item>