I have an NSMutableIndexSet
and I want to add indexes i开发者_StackOverflow中文版n it to another NSMutableIndexSet
in my loop.
I've been looking for right functions but unable to find anything.
How can I do that?
Have you tried this:
[someIndexSet addIndexes:otherIndexSet]
精彩评论