I added a textfield
to tableview's cell and when textfield become first responder then tableView scrolls up. Even dow I set self.tableView.scrollEnabled = false
. How can I prevent this phenomenon?
Asked
Active
Viewed 1,104 times
2

János
- 32,867
- 38
- 193
- 353
-
1Override the `viewWillAppear` method and don't call `[super viewWillAppear: animated]` More you can found here: http://stackoverflow.com/questions/9637089/disabling-automatic-scrolling-of-uitableview-when-editing-uitextfield-inside-uit – János Sep 03 '14 at 15:57