arachide
arachide

Reputation: 8066

Is there a way to move row to the selected row in UITableView

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

Answers (1)

user121301
user121301

Reputation:

Use scrollToRowAtIndexPath like this:

NSIndexPath* ip = [NSIndexPath indexPathForRow:7 inSection:0];
[tableView scrollToRowAtIndexPath:ip atScrollPosition:UITableViewScrollPositionTop animated:YES];

Upvotes: 2

Related Questions