Search Results

0
votes

How can I disable the UITableView selection highlighting?

From the UITableViewDelegate Protocol you can use the method willSelectRowAtIndexPath and return nil if you don't want the row selected. In the same way the you can use the willDeselectRow …
1
vote

Update results of NSFetchedResultsController without a new fetch

just have your problem and yes apparently using notifications is the unique way you can make a tableview refresh when the table used a nsfetchedresults controller. like in the core databook …