开发者

loaded the "rootView" nib but didn't get a UITableView.'

I have developed a split view based applicaiton. And i am trying to add image to root view contr开发者_C百科oller.

For that i made RootView.xib manually and in MainWindow.xib I loaded rootViewController with this xib. But when i try building this i get this error.

Any help in this approach OR any other approach to add image to root view controller will be greatly apprecviated


You probably have to change the super-class of your rootViewController from UITableViewController to UIViewController.


If you subclass a UITableViewController on purpose, you need to change it's default view load behaviour just by overriding it's load view method:

- (void)loadView {
    [super loadView];
}
0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜