I have an UITableView populated by a NSFetchedResultsController. The initial fetch works fine. I can add, remove, modify, etc with zero problems.. But I want to add user-defined sorting to the table.
I have an application that was running just fine under OS3+. But it does not work under OS4. I get the following error message:
I\'ve recently come to learn that NSFetchedResultsController is an extremely buggy class and its been causing me headaches for a while now with my rather large Core Data app.
I\'m using an NSFetchedResultsController to display items in my table view: - (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView {
I\'m implementing an UITableViewController in conjunction with NSFetchedResultsController. When the UITableViewController is instantiated the NSFetchedResultsController is constructed (substantially i
trying the solution here: https://stackoverflow.com/questions/1741093?tab=newest#tab-top I\'m using a transient property and the category solution and it seems to be working right up until the index
Something strange is going on with my iphone app. I am using Core Data to store data in a SQLite database. The first time after my app starts up I try to read a table to return all of the rows to fill
I have a little problem with my UITableViewController or NSFetchedResultsController. I am not sure which is the problem soure but I guess its the UITableViewController.
Is there a way to have the sort descriptor(s) be dynamically set for a fetched results controller on iOS?
I mean... could I also just create a plain old UIViewController and then set up a UITableView myself, plus an NSFetchedResultsController?