kubilay
kubilay

Reputation: 5330

How to Add an NSMutableIndexSet to Another?

I have an NSMutableIndexSet and I want to add indexes in it to another NSMutableIndexSet in my loop.

I've been looking for right functions but unable to find anything.

How can I do that?

Upvotes: 0

Views: 198

Answers (1)

diederikh
diederikh

Reputation: 25281

Have you tried this:

 [someIndexSet addIndexes:otherIndexSet]

Upvotes: 2

Related Questions