Ambreen
Ambreen

Reputation:

stop tableviewcontroller scrolling

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

Answers (1)

hasnat
hasnat

Reputation: 3037

self.tableView.scrollEnabled = NO;

where self is your UITableViewController

Upvotes: 4

Related Questions