未连接到视图的元素
Posted
技术标签:
【中文标题】未连接到视图的元素【英文标题】:Elements not connecting to the view 【发布时间】:2020-03-06 07:30:16 【问题描述】:为什么我无法将标签和按钮等元素连接到我创建的 UIView 类。我也在故事板中命名了它。
【问题讨论】:
请告诉我们你到目前为止做了什么。 @Rob 我将视图链接到我的 TableViewController 文件作为 IBOutlet 你可以简单地查看这个链接来获得一个想法***.com/a/33007472/5089923 这能回答你的问题吗? Access each header and controls in the tableview in swift @ShubhDev 我也有部分标题,所以这让我很困惑。除此之外,我也尝试为视图创建 UIView 类,但无法将这些开关和标签连接到其中。跨度> 【参考方案1】:子类UITableViewHeaderFooterView
,然后从 IB/Storyboard 连接插座。
然后你可以通过viewForHeaderInSection
方法访问这些:
override func tableView(_ tableView: UITableView, viewForHeaderInSection section: Int) -> UIView?
let headerView = tableView.dequeueReusableHeaderFooterView(withIdentifier: "CustomHeader") as! CustomHeader
headerView.Label.text = "View all calls"
return headerView
【讨论】:
但我不应该将视图连接到我的 TableviewController 文件 你能用你目前得到的代码编辑你原来的帖子吗?以上是关于未连接到视图的元素的主要内容,如果未能解决你的问题,请参考以下文章