转~Static table views are only valid when embedded in UITableViewController instances

问题
当在UIViewController中加入Table View,然后将其Content设置为Static Cells,xcode编译时报错提示:Static table views are only valid when embedded in UITableViewController instances。

解决方法

将放置Table View改为放置Container View;

单独拖出一个Table View Controller,在这里就可以将Table View的Content设置为Static Cells做你想做的事情;

关联,在Container View上按住右键拖出一条线到Table View Controller释放鼠标右键弹出如下窗口,选择Embed,这样就大功告成了。

转~Static table views are only valid when embedded in UITableViewController instances_第1张图片
Embed.png

原文地址:https://blog.csdn.net/tujiaw/article/details/50676920

你可能感兴趣的:(转~Static table views are only valid when embedded in UITableViewController instances)