I am trying to convert the code listed below to be able to be used with Storyboards
. I am using Xcode 5.0.2
currently. If you can help it would be appreciated.
{
NSArray *nib = [[NSBundle mainBundle] loadNibNamed:@"Main" owner:self options:nil];
cell = [nib objectAtIndex:0];
}
You don't need to do this anymore with storyboards. All you need to do is copy and paste the content of the cell nib into a new cell in a table view with dynamic prototypes.