iOS 8 で実行してUITableView
おり、ストーリーボードの制約から自動セルの高さを使用しています。
セルの 1 つに 1 つのセルが含まれており、UITextView
ユーザー入力に基づいて縮小および拡大する必要があります。タップしてテキストを縮小/拡大します。
これを行うには、テキスト ビューに実行時制約を追加し、ユーザー イベントに応じて制約の定数を変更します。
-(void)collapse:(BOOL)collapse; {
_collapsed = collapse;
if(collapse)
[_collapsedtextHeightConstraint setConstant: kCollapsedHeight]; // 70.0
else
[_collapsedtextHeightConstraint setConstant: [self idealCellHeightToShowFullText]];
[self setNeedsUpdateConstraints];
}
これを行うときはいつでも、tableView
更新でラップして呼び出します[tableView setNeedsUpdateConstraints]
:
[tableView beginUpdates];
[_briefCell collapse:!_showFullBriefText];
[tableView setNeedsUpdateConstraints];
// I have also tried
// [self.tableView reloadRowsAtIndexPaths:@[indexPath] withRowAnimation:UITableViewRowAnimationTop];
// with exactly the same results.
[tableView endUpdates];
これを行うと、セルは拡張されます (そして、実行中にアニメーション化されます) が、制約の警告が表示されます。
2014-07-31 13:29:51.792 OneFlatEarth[5505:730175] Unable to simultaneously satisfy constraints.
Probably at least one of the constraints in the following list is one you don't want. Try this: (1) look at each constraint and try to figure out which you don't expect; (2) find the code that added the unwanted constraint or constraints and fix it. (Note: If you're seeing NSAutoresizingMaskLayoutConstraints that you don't understand, refer to the documentation for the UIView property translatesAutoresizingMaskIntoConstraints)
(
"<NSLayoutConstraint:0x7f94dced2b60 V:[UITextView:0x7f94d9b2b200'Brief text: Lorem Ipsum i...'(388)]>",
"<NSLayoutConstraint:0x7f94dced2260 V:[UITextView:0x7f94d9b2b200'Brief text: Lorem Ipsum i...']-(15)-| (Names: '|':UITableViewCellContentView:0x7f94de5773a0 )>",
"<NSLayoutConstraint:0x7f94dced2350 V:|-(6)-[UITextView:0x7f94d9b2b200'Brief text: Lorem Ipsum i...'] (Names: '|':UITableViewCellContentView:0x7f94de5773a0 )>",
"<NSLayoutConstraint:0x7f94dced6480 'UIView-Encapsulated-Layout-Height' V:[UITableViewCellContentView:0x7f94de5773a0(91)]>"
)
Will attempt to recover by breaking constraint
<NSLayoutConstraint:0x7f94dced2b60 V:[UITextView:0x7f94d9b2b200'Brief text: Lorem Ipsum i...'(388)]>
388 は私の計算した高さです。その他の制約はUITextView
Xcode/IB からのものです。
最後の1つは私を悩ませていUIView-Encapsulated-Layout-Height
ます-最初にレンダリングされたときのセルの計算された高さだと思います-(私は自分のUITextView
高さを>= 70.0に設定しました)しかし、この派生した制約がそれを却下するのは正しくないようですユーザー cnstraint を更新しました。
さらに悪いことに、レイアウト コードは高さの制約を破ろうとしていると言っていますが、そうではありません。セルの高さを再計算し、すべてが思いどおりに描画されます。
それで、NSLayoutConstraint
UIView-Encapsulated-Layout-Height
それは何ですか(自動セルサイズ設定のために計算された高さだと思います)、どうすればきれいに再計算するように強制できますか?