我可以假设从<div class="form-group">
<%= f.association :categories, input_html: { id: 'your_id', class: 'your_class' } %>
</div>
获取一个单元后,单元格将具有所有内容大小(具体是 - 将被布局),我可以安全地访问f.e.是否存在于单元格内的标签的宽度?
它似乎在我的项目中工作,但我想完全不感觉,但在文档中找不到相关信息。
答案 0 :(得分:0)
如果你想获得单元格中存在的标签宽度....那么使用tag属性你可以获得标签及其宽度..
答案 1 :(得分:0)
更可靠:
override func tableView(_ tableView: UITableView, willDisplay cell: UITableViewCell, forRowAt indexPath: IndexPath) {
// do your setup tasks here
}