Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
2answers
4k views

Get NSIndexSet from NSArray

NSArray has useful methods to find objects for specified indexes // To find objects by indexes - (id)objectAtIndex:(NSUInteger)index - (NSArray *)objectsAtIndexes:(NSIndexSet *)indexes // To find ...
2
votes
3answers
864 views

NSIndexSet “-indexAtIndex:”?

This feels like a dumb question because it seems to me like my use case must be quite common. Say I want to represent a sparse set of indexes with an NSIndexSet (which is of course what it's for). I ...
1
vote
4answers
1k views

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?
1
vote
1answer
495 views

indexSetWithIndexesInRange is not doing what expected

I want to select some objects from an array. Therefore I'm using begin and end indexes of my selection. NSLog(@"start:%d\nend:%d", startIndex, endIndex); NSIndexSet *myIndexes = [NSIndexSet ...
1
vote
1answer
621 views

Deleting UITableView sections combined with custom section headers UIViews = bug in Apple's code?

I'm trying to delete a section from a UITableView using animation and custom table section header UIViews. I use... //Deletion from my model done here (not shown) and then perform the ...
0
votes
0answers
16 views

What is the underlying data structure of NSIndexSet?

Just wondering about the runtime of NSIndexSet's addIndex method. What's the underlying data structure of NSIndexSet?
0
votes
0answers
53 views

iPhone - UITableViewCell - NSIndexSet - JSON Parsing

I am grabbing the values from a JSON, and displaying them into a UITableView. JSON looks like this - {"Entertainment":{"1":{"1":"Ent1","done":"No"},"2":{"1":"Ent2","done":"No"}}} The Ent1 and Ent2 ...
0
votes
1answer
100 views

How to indicate index of NSIndexSet object?

everyone. I want to indicate index of NSIndexSet object. Find various method but I can't find. How to indicate index of NSIndexSet object? NSMutableArray *array = [[NSMutableArray ...
0
votes
1answer
204 views

Select NSTableView row programmatically and call method

I have an NSTableView that I add objects to (through core data). I came across this in my searches: NSIndexSet *indexSet = [NSIndexSet indexSetWithIndex:1]; [tableView selectRowIndexes:indexSet ...
0
votes
2answers
342 views

sorted array from indexesOfObjectsPassingTest?

I have an array of myObjects called arrayToFilter. One (element?) of myObject is an array of bezierpaths. I am comparing the bezierpath at a particular index (thispath) to a second path, and making ...
0
votes
1answer
1k views

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 the indexes in a NSArray object?