views:

168

answers:

1

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