gpt4 book ai didi

cocoa - NSIndexSet 上的快速枚举

转载 作者:行者123 更新时间:2023-12-03 16:00:34 26 4
gpt4 key购买 nike

你能快速枚举一个NSIndexSet吗?如果没有,枚举集合中项目的最佳方法是什么?

最佳答案

在 OS X 10.6+ 和 iOS SDK 4.0+ 中,您可以使用 -enumerateIndexesUsingBlock: 消息:

NSIndexSet *idxSet = ...

[idxSet enumerateIndexesUsingBlock:^(NSUInteger idx, BOOL *stop) {
//... do something with idx
// *stop = YES; to stop iteration early
}];

关于cocoa - NSIndexSet 上的快速枚举,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4209029/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com