多くのテキストを保持するUITableViewCell
を作成する必要があります。 UITextView
を自分のセルに追加できますが、各エントリには同じ量のテキストはありません。動的な高さを持つUITableViewCell、UITextView
私はUITableViewCell
の高さを制御することができると知っています:-(CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath
しかし、それは私が探しているものではありません。
シナリオ1:
---------------
| First Cell |
---------------
---------------
| Second Cell |
| with some |
| text. |
---------------
---------------
| Third Cell |
---------------
シナリオ2:あなたのセルのテキストの
---------------
| First Cell |
---------------
---------------
| Second Cell |
| with some |
| more text and |
| an unknown |
| cell height. |
---------------
---------------
| Third Cell |
---------------
あなたが探しているものが明確でない - (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPathは標準的な方法です。 –
はい、セルの高さがあらかじめわかっていないと意味がありません。 – WrightsCS