Question

I am trying to make a method in which the data source for my NATableView is cleared, but I cannot figure out how to do this anywhere.

Here is the code I am using to send an array called final to my table view.

// I want to clear it here before filling it again.  
for (int i = 0; i < [final count]; i++) {
    [myArrayController addObject: [NSMutableDictionary dictionaryWithObjectsAndKeys:final[i], @"File Name", nil]];
}

Any help would be great!

Was it helpful?

Solution

If you are using an NSMutableArray and myArrayController is your mutable array you want to call

[myArrayController removeAllObjects]; 

before you enter the for-loop.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top