tvOS UITextView - 如何编辑它

时间:2015-10-15 17:23:44

标签: objective-c uitextview tvos

我有一个带有userInteraction = YESselectable = YES的UITextView,我可以对其进行关注(我已经检查了对didUpdateFocusInContext的关注)但我无法编辑它,因为键盘永远不会出现。

我还尝试设置委托方法,但永远不会调用textFieldShouldBeginEditing

editable属性似乎在代码中不可用。

我错过了什么吗? textview是否可编辑?

2 个答案:

答案 0 :(得分:0)

如果您使用的是模拟器,请确保您没有将其设置为仅使用硬件键盘。

硬件 - >键盘 - >尝试两个切换

答案 1 :(得分:0)

我必须做类似于UITextView的操作才能让键盘显示:

UITextField* postField = [[UITextField alloc] init];
postField.delegate = self;
postField.keyboardType = UIKeyboardTypeTwitter;
[self addSubview:postField];
//Show Keyboard for input
[postField becomeFirstResponder];