Reputation:
I am adding a textview to UITableviewController's view and now I want to stop the scrolling of view of UITableviewController. But I am unable to do so. As its a view so no enable and disable scrolling properties like table view are existing. Any ideas???
Upvotes: 3
Views: 833
Reputation: 3037
self.tableView.scrollEnabled = NO;
where self is your UITableViewController
Upvotes: 4