views:

60

answers:

1

Hi, I have a UITableView inside a UIViewController that is using ABPeoplePickerNavigationControllerDelegate.

It looks like this:

@interface MyViewController : UIViewController <ABPeoplePickerNavigationControllerDelegate> {
}

In the .xib I have a UITableView that I need to populate with data stored in CoreData. How can I go about doing this?

+1  A: 

There's an excelent tutorial in Ray Wenderlich's Blog. I've learned all about Core Data in his blog.

If you need some code, post more information about your data model.

audience