Reputation: 8066
I hope to know if there is a way to move row to the selected row in UITableView.
for example, row are:
1 2 3 4 5 6 7 8
only 3 rows are visible,
I hope to move row directly to 7
Welcome any comment
Thanks
interdev
Upvotes: 1
Views: 262
Reputation:
Use scrollToRowAtIndexPath like this:
NSIndexPath* ip = [NSIndexPath indexPathForRow:7 inSection:0];
[tableView scrollToRowAtIndexPath:ip atScrollPosition:UITableViewScrollPositionTop animated:YES];
Upvotes: 2