Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在视图中有一个按钮,当单击该按钮时会出现一个子视图。子视图包含一个表格视图。当单击表格视图单元格时,内容视图内的文本视图被启用。所以我无法选择表格行..无子视图上发生的操作..如何解决这个问题?
继承 UITextView 并覆盖 canBecomeFirstResponder:
- (BOOL)canBecomeFirstResponder { return NO; }
将委托和数据源提供给您UITableview并设置为像下面这样的超级视图..
UITableview
[self.view bringSubviewToFront:yourTableview];
可能这个答案对你有帮助......
:)