Static Table Cells in NIB File

interface-builder, ios, ios7, objective-c, xcode5

Solution

It seems like at the moment, what I'm trying to do is just not supported. I filed a Radar bug on Apple, but here's the workaround that worked for me.

Just use a storyboard, and call it like a nib using:

UIStoryboard *sb = [UIStoryboard storyboardWithName:@"EditProfile" bundle:nil];
EditProfileTVC *vc = [sb instantiateViewControllerWithIdentifier:@"EditProfile"];
vc.modalTransitionStyle = UIModalTransitionStyleFlipHorizontal;
[self.navigationController pushViewController:vc animated:YES];

Where in your storyboard, you name the view controller you want to start on as EditProfile, in this case. Hope this helps someone out.

Problem

Is it possible to create a nib file that has a table view with custom static cells? I want to create a form-like table view with all static content, but I'm not currently using storyboards. I was able to find the content type menu in the default Storyboard of my app, but I'm using Nibs, and when I create either a UIViewController nib or a UITableViewController nib, in both cases there is no content type menu in the Attributes inspector tab. Any thoughts?

Original source