0

我在 UITableViewCell 中有一个 UITextView,它与它一起生长。使用

[myTableView beginUpdates];
[myTableView endUpdates];

textViewDidChange正确设置单元格的高度,我正在接近解决方案。但我有一个与第一响应者有关的问题。我将自定义单元格中的 textview 设置为在视图加载时成为第一响应者(因为我想从打开的键盘开始),但是 textview 在viewDidLoad, viewWillAppear,中为零viewDidAppear,只有当我写一个 char 时我才能看到它不是零。

我将 IB 自定义单元格中的 textview 与我的视图控制器中的 IBOutlet 连接起来。

4

1 回答 1

0

我解决了

[myTextView becomeFirstResponder];

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath;
于 2011-06-04T18:44:48.533 回答