在UITableView页脚中动态设置和调整标签大小

时间:2016-10-16 13:38:21

标签: ios uitableview rubymotion tablefooterview

在我的应用中,我在选择单元格时动态更新表格视图的页脚文本。不幸的是,我这样做的方式似乎改变了UILabelUIView的框架。例如,当我点击一个单元格时,我的标签的宽度变为950到1200之间的值。实际上,宽度应该是(最多)视图的宽度。这是我的代码:

def tableView(tableView, viewForFooterInSection:section)
  (section != (self.sections.count - 1)) ? footer_view : nil
end

def tableView(tableView, heightForFooterInSection: section)
  if section != (self.sections.count - 1)
    footer_label.frame.size.height + 20.0
  else
    1.0
  end
end

def tableView(tableView, didSelectRowAtIndexPath: indexPath)
  tableView.beginUpdates
  footer_label.text = "Details: #{updated_details}"
  footer_label.sizeToFit
  tableView.endUpdates
end


def footer_view
  @footer_view ||= UIView.alloc.initWithFrame(CGRectZero).tap do |fv|
    fv.addSubview(footer_label)
  end
end

def footer_label
  @footer_label ||= UILabel.alloc.initWithFrame(CGRectZero).tap do |pl|
    pl.frame = CGRect.new(
      [15, 10],
      [self.view.frame.size.width - 30, self.view.frame.size.height]
    )
    pl.font = UIFont.preferredFontForTextStyle(UIFontTextStyleCaption2)
    pl.numberOfLines = 0
    pl.lineBreakMode = NSLineBreakByWordWrapping
    pl.text          = ""
    pl.sizeToFit
  end
end

我猜测调用sizeToFit是问题的一部分吗?

2 个答案:

答案 0 :(得分:2)

我以为我曾尝试过这个但也许我的订单已经关闭了。无论哪种方式,我通过在removeAllActions / beginUpdates内再次设置页脚框架来解决它:

endUpdates

答案 1 :(得分:1)

我认为您需要为页脚使用动态高度。

tableView.heightForFooterInSection = UITableViewAutomaticDimension
tableView.estimatedSectionFooterHeight = 25.0

请记住,您必须设置UILabel的约束。 也许您必须更新该部分以更改高度。