I have UIViewControllerand UITableView as child in the view, what I want to do is when I touch any row I am displaying a view at bottom. I want to
UIViewController
UITableView
Try this methods:
- (void)scrollViewWillBeginDragging:(UIScrollView *)scrollView { } - (void)scrollViewDidEndDragging:(UIScrollView *)scrollView willDecelerate:(BOOL)decelerate { }
Use scrollViewDidEndDragging like alternative of touchesEnded. Hope it helps.