hit counter

Timeline

My development logbook

My EXC_BAD_ACCESS Mystery

It turns out it is because of the following line of code:

NSLog(@"numberOfRowsInSection %@", [sectionInfo numberOfObjects]);

It should be %i because numberOfObjects returns an integer

Core Data 4

I did not know that after implemented a NSFetchResultController, I sTILl need to programmatically fetch the data and then call the table view to reloadData

An example: