Reputation: 5330
I have an NSMutableIndexSet and I want to add indexes in it to another NSMutableIndexSet in my loop.
NSMutableIndexSet
I've been looking for right functions but unable to find anything.
How can I do that?
Upvotes: 0
Views: 198
Reputation: 25281
Have you tried this:
[someIndexSet addIndexes:otherIndexSet]
Upvotes: 2