Swift - 在ViewController中表格使用静态单元格(Static Cell)

前端之家收集整理的这篇文章主要介绍了Swift - 在ViewController中表格使用静态单元格(Static Cell)前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
如果直接在 UIViewController 中加入一个 UITableView 并将其 Content 属性设置为 Static Cells,Xcode便会报错:
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)



效果图如下:

原文出自:www.hangge.com转载请保留原文链接http://www.hangge.com/blog/cache/detail_912.html


补充:

在主页面初始化的时候,会调用页面

prepare(for segue: UIStoryboardSegue,sender: Any?) 方法,这里的segue.destination所指向的就是contianview是实例化的类可以在这里做一些处理,比如设置他的delegate或block给主页面调用,如果新建了一个class,可以直接持有这个类

原文链接:https://www.f2er.com/swift/320785.html

猜你在找的Swift相关文章