objective-c – 如何在NSArray中找到某种对象?

前端之家收集整理的这篇文章主要介绍了objective-c – 如何在NSArray中找到某种对象?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我的第一直觉是
FooType *myFoo = nil;
for (id obj in myArray) {
    if ( [obj isKindOfClass:[FooType class]] ) myFoo = obj;
}

有了Objective-C和NSArray的所有好东西,就必须有更好的方法,对吧?

解决方法

使用Blocks支持(在iOS 4或Snow Leopard中):
FooType *myFoo = nil;
NSUInteger index = [myArray indexOfObjectPassingTest:^BOOL (id obj,NSUInteger idx,BOOL *stop) {
    return [obj isKindOfClass:[FooType class]];
}];
if (index != NSNotFound) myFoo = [myArray objectAtIndex:index];

它不是真的更短.您可以考虑编写自己的NSArray方法来执行此操作.

原文链接:https://www.f2er.com/c/117529.html

猜你在找的C&C++相关文章