Hello,
I have been loading view from Nib files successfully using the approach found on this site
[[NSBundle mainBundle] loadNibNamed:@"YourNibName" owner:self options:nil];
The problem is that, because we have to set the File Owner, this nib file becomes "attached" to this view controller. This view is subclass of UITableViewCell and I wanted to load this nib file from several different vc's. Thanks for your help.