In WWDC 2011 video 309 on Storyboards. They demonstrate using a custom UITableViewCell that has been subclassed. In the cellForRowAtIndexPath they setup the cell by getting a NSManagedObject and setting a property of the custom cell to the managed object. The presenter says the custom table cell will set the UILabels using the managed object.
They never show the code for the custom tableview cell. My question is what method would you override in UITableViewCell to update the cell?
And yes I know you normally do this in cellForRowAtIndexPath by using either tags or importing the header for the tableViewCell and accessing it's properties.