我有两个文本视图作为 UITableView 的子视图inputAccessoryView
,其中一个是不可编辑的,但我仍然希望允许人们突出显示和使用(复制|定义),另一个在inputAccessoryView
.
问题是当突出显示不可编辑的 textView 时,输入附件视图出现......(为什么!?)好像 tableView 突然成为第一响应者,我猜是因为它的一个子视图已成为第一响应者。问题是,我是否需要将这个不可编辑的 textView 从 tableViews 子视图中取出,或者有什么方法可以抑制 inputAccessoryView 在突出显示时弹出?后者将是首选。
-(UITextView *)textView
{
if (!_textView) {
_textView = [[UITextView alloc]initWithFrame:CGRectZero];
//_textView.delegate = self;
_textView.font = [UIFont questionDemiBoldFontOfSize:36.0f];
_textView.backgroundColor = [UIColor clearColor];
_textView.editable = NO;
_textView.scrollEnabled = NO;
_textView.textColor = [UIColor whiteColor];
_textView.tintColor = [UIColor whiteColor];
_textView.autoresizingMask = UIViewAutoresizingFlexibleBottomMargin | UIViewAutoresizingFlexibleRightMargin;
}
return _textView;
}