私のアプリでは、セルを選択すると、テーブル ビューのフッター テキストを動的に更新しています。残念ながら、私がそうしている方法は、UILabel
私の 内の のフレームを変更しているようですUIView
。たとえば、セルをタップすると、ラベルの幅が 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
が問題の一部だと思いますか?