在我的项目中,我有 UIScrollView,现在我在 scvRegister(scrollview) 中添加了一个 UITableView,如下所示:
autocompleteTableView = [[UITableView alloc] initWithFrame:CGRectMake(50, 80, 220, 120) style:UITableViewStylePlain];
[scvRegister addSubview:autocompleteTableView];
一切似乎都很好,但是,当我触摸 TableView 并滚动它时 -> ScrollView 被移动了,TableView 没有任何变化!
我已经阅读了一些关于 hittest 事件的帖子,但我的界面是 UIViewController,而不是 UIScrollView,所以我无法覆盖它。
@interface RegisterViewController : UIViewController<UINavigationControllerDelegate,UITextFieldDelegate,BSKeyboardControlsDelegate,UIActionSheetDelegate,UITableViewDelegate, UITableViewDataSource>
对此有任何想法!在先进的thks,