自定义节标题的宽度形式为xib

时间:2015-05-26 08:36:54

标签: ios iphone uitableview autolayout xib

我无法设法让视图的宽度适应不同屏幕尺寸的表格视图的大小

这是我在viewDidLoad()

上的代码
    view.tableView.registerNib(UINib(nibName: "Header", bundle: NSBundle.mainBundle()), forHeaderFooterViewReuseIdentifier: "Header")

在表格视图代表:

  func tableView(tableView: UITableView, viewForHeaderInSection section: Int) -> UIView? {
    var cell = tableView.dequeueReusableHeaderFooterViewWithIdentifier("Header") as! Header
    // etc 
 }

请记住,我不想将其放在故事板中,而且我正在使用自动布局。

任何提示?

1 个答案:

答案 0 :(得分:5)

我的xib包含一个UITableViewCell。我用UIView替换了它,它解决了我的问题