UITableViewCell 中的 UITextView:第一响应者问题

发布于 2024-11-13 15:09:49 字数 442 浏览 2 评论 0原文

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

[myTableView beginUpdates];
[myTableView endUpdates];

并正确设置单元格的高度,我正在接近解决方案。 但我有一个与第一响应者相关的问题。 我将自定义单元格中的文本视图设置为视图加载时的第一个响应者(因为我想从打开的键盘开始),但在 viewDidLoadviewWillAppear< 中,textview 为零/code>,viewDidAppear,只有当我写一个字符时我才能看到它不为零。

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

I have a UITextView in a UITableViewCell which grows together with it.
Using

[myTableView beginUpdates];
[myTableView endUpdates];

in textViewDidChange and setting the height of the cell properly, I'm getting close to the solution.
But I've a problem tied to the first responder.
I set the textview in my custom cell to become the first responder ('cause I want to start with the open keyboard) on the view loading, but the textview is nil in viewDidLoad, viewWillAppear, viewDidAppear, only when I write a char I can see it's not nil.

I connected the textview in the IB custom cell with an IBOutlet in my viewcontroller.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

夏の忆 2024-11-20 15:09:49

我决定

[myTextView becomeFirstResponder];

投入

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath;

I resolved putting

[myTextView becomeFirstResponder];

in

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath;
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文