views:

22

answers:

1

I want the user scroll the UITableView, but not to tap the UITableView, how can I do so? Thank you.

A: 

use

- (void)scrollToRowAtIndexPath:(NSIndexPath *)indexPath atScrollPosition:(UITableViewScrollPosition)scrollPosition animated:(BOOL)animated
{

}
Ashish Mathur