I have a UITableView
instance variable. I want to be able to register my view controller to be the UIScrollViewDelegate
for my UITableViewController
. I have already tried
tableView.delegate = self;
But when scrolling, my methods
- (void)scrollViewDidEndDecelerating:(UIScrollView *)scrollView - (void)scrollViewDidEndDragging:(UIScrollView *)scrollView willDecelerate:(BOOL)decelerate
don't get called. Any suggestions?
Methods for managing selections, configuring section headers and footers, deleting and reordering cells, and performing other actions in a table view.
Datasource methods are used to generate tableView cells,header and footer before they are displaying.. Delegate methods provide information about these cells, header and footer along with other user action handlers like cell selection and edit..
Now UITableViewDelegate
conforms to UIScrollViewDelegate
!
(I write this answer because many people are going to find this page googling..)
UITableViewDelegate
will implement UIScrollViewDelegate
protocol also.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With