Stop scrolling viewviewcontroller table

I am adding a text view to the UITableviewController view, and now I want to stop scrolling the UITableviewController view. But I can’t do it. Because its view does not allow you to enable or disable scroll properties, such as a table view, exists. Any ideas ???

+3
source share
1 answer
self.tableView.scrollEnabled = NO;

where self is your UITableViewController

+4
source

Source: https://habr.com/ru/post/1713734/


All Articles