Uiview as subview containing uitableview
我在视图中有一个按钮,当点击该按钮时出现一个子视图。子视图包含一个tableview.When点击tableview单元格时,contentview中的文本视图被启用。因此我无法选择一个表格行。没有的子视图发生的行动..如何解决这个问题?
子类UITextView并覆盖canBecomeFirstResponder:
- (BOOL)canBecomeFirstResponder {
return NO;
}
Give the delegate and datasource to your UITableview
and set as a superview like bellow..
[self.view bringSubviewToFront:yourTableview];
may be this answer is helpful to you...
:)
链接地址: http://www.djcxy.com/p/87684.html