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???
+1
A:
self.tableView.scrollEnabled = NO;
where self is your UITableViewController
Hasnat
2009-12-09 11:28:56