Swift - 在ViewController中表格使用静态单元格(Static Cell)
如果直接在 UIViewController 中加入一个 UITableView 并将其 Content 属性设置为 Static Cells,Xcode便会报错:
也就是说只有在UITableViewController中的UITableView才能使用静态单元格。
UIViewController中也能使用静态单元格的办法:使用Container View做中间连接
(1)先将 TableView 放到一个 UITableViewController 中
(2)在原来的 UIViewController 加入一个 ContainerView
(3)连接 ContainerView 和 UITableViewController(使用embed)
Static table views are only valid when embedded in UITableViewController instances.
也就是说只有在UITableViewController中的UITableView才能使用静态单元格。
UIViewController中也能使用静态单元格的办法:使用Container View做中间连接
(1)先将 TableView 放到一个 UITableViewController 中
(2)在原来的 UIViewController 加入一个 ContainerView
(3)连接 ContainerView 和 UITableViewController(使用embed)
效果图如下: