Top "Nsindexset" questions

The NSIndexSet class represents an immutable collection of unique unsigned integers, known as indexes because of the way they are used.

How to use NSIndexSet

In Objective-C, my program opens a window and displays a table. I want to have a specified row of the …

cocoa foundation nsindexset
Create NSIndexSet from integer array in Swift

I converted an NSIndexSet to an [Int] array using the answer at https://stackoverflow.com/a/28964059/6481734 I need to do …

ios swift2 nsarray nsindexset
How to get indexes from NSIndexset into an NSArray in cocoa?

I'm getting the select items from a table view with: NSIndexSet *selectedItems = [aTableView selectedRowIndexes]; what's the best way to get …

objective-c cocoa nsindexset
Fast enumeration on an NSIndexSet

Can you fast enumerate a NSIndexSet? if not, what's the best way to enumerate the items in the set?

cocoa macos nsindexset
Create an NSRange with a given minimal and maximal value

I have a collection of int64_t values that I need to make an index set out of. I previously …

objective-c nsrange nsindexset
Get NSIndexSet from NSArray

NSArray has useful methods to find objects for specified indexes // To find objects by indexes - (id)objectAtIndex:(NSUInteger)index …

cocoa arrays nsarray nsindexset
NSIndexSet "-indexAtIndex:"?

This feels like a dumb question because it seems to me like my use case must be quite common. Say …

objective-c cocoa nsindexset