I added a search bar to my table view, and as the user searches, I want the table view to scroll to the text that your typed.
How do I make the scroll view scroll automatically?
This is what I tried, but I get an error saying that an Integer is not convertible to an index Path. What should I do?
self.tableview.scrollToRowAtIndexPath(1, atScrollPosition: UITableViewScrollPosition.Middle, animated: true)
or
self.tableview.scrollToNearestSelectedRowAtScrollPosition(scrollPosition: UITableViewScrollPosition.Middle, animated: true)