UITableViewCell 中的 UITextView:第一响应者问题
我在 UITableViewCell 中有一个 UITextView ,它与它一起增长。 在 textViewDidChange
中使用
[myTableView beginUpdates];
[myTableView endUpdates];
并正确设置单元格的高度,我正在接近解决方案。 但我有一个与第一响应者相关的问题。 我将自定义单元格中的文本视图设置为视图加载时的第一个响应者(因为我想从打开的键盘开始),但在 viewDidLoad
、viewWillAppear< 中,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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我决定
投入
I resolved putting
in