有如下tableView,能滾動:
[self.tableView scrollToRowAtIndexPath:indexPath
atScrollPosition:UITableViewScrollPositionTop
animated:YES];
但是滾動的非常快,我想讓速度慢一點。不知道應該怎麼實現?
[UIView animateWithDuration:2 animations:^{
[self.tableView scrollToRowAtIndexPath:[NSIndexPath indexPathForItem:20 inSection:0] atScrollPosition:UITableViewScrollPositionTop animated:NO];
}
];
2秒是個例子, 真正時間應該是通過滾動距離來決定的。