我有一个UITableView,我在动画中添加一行(使用insertRowsAtIndexPaths:withRowAnimation:
)。只要表格不长于屏幕,这一切都很好。
如果它比屏幕大,那么我试图滚动到底部,但它不是我想要的工作。如果我在添加后滚动到新行,我会错过动画。如果我尝试在添加之前滚动到该indexPath,它会抛出异常(关于它不是有效的indexPath)
除了添加空白行之外,还有解决方法吗?
答案 0 :(得分:22)
是的,有一个没有添加空行的解决方案。
注意:在代码中,我认为只有1个部分但很多行。您也可以修改代码来管理多个部分。
- (void)theMethodInWhichYouInsertARowInTheTableView
{
//Add the object in the array which feeds the tableview
NSString *newStringObject = @"New Object";
[arrayWhichFeeds addObject:newStringObject];
[myTableView beginUpdates];
NSArray *paths = [NSArray arrayWithObject:[NSIndexPath indexPathForRow:([arrayWhichFeeds count] - 1) inSection:0]];
[myTableView insertRowsAtIndexPaths:paths withRowAnimation:NO];
[myTableView endUpdates];
[myTableView reloadData];
[myTableView scrollToRowAtIndexPath:[NSIndexPath indexPathForRow:([arrayWhichFeeds count] - 1) inSection:0] atScrollPosition:UITableViewScrollPositionBottom animated:YES];
}
答案 1 :(得分:20)
我有同样的问题。这是我的解决方案。
首先 - 更新您的数据源
第二 -
NSIndexPath *path = [NSIndexPath indexPathForRow:([arrayWhichFeeds count] - 1 inSection:0]];
NSArray *paths = [NSArray arrayWithObject:path];
[myTableView insertRowsAtIndexPaths:paths withRowAnimation:UITableViewRowAnimationTop];
[myTableView scrollToRowAtIndexPath:path atScrollPosition:UITableViewScrollPositionBottom animated:YES];
*请注意,这不包含在[tableView beginUpdades]
和[tableView endUpdates]
代码中。如果你这样做将无法正常工作。
尝试一下,它应该在滚动到它们的同时从底部为新行设置动画。
答案 2 :(得分:6)
其他技术,包括在这个问题下提到的那些技术对我来说不起作用。但这确实如此:
当我第一次开始iOS开发时,我使用了这种技术(并写了这个答案),但这确实可以长期使用。
答案 3 :(得分:3)
请记住在主线程中执行此操作,否则它将无法滚动到所需位置。
答案 4 :(得分:1)
更一般地说,滚动到底部:
NSIndexPath *scrollIndexPath = [NSIndexPath indexPathForRow:([self.table numberOfRowsInSection:([self.table numberOfSections] - 1)] - 1) inSection:([self.table numberOfSections] - 1)];
[self.table scrollToRowAtIndexPath:scrollIndexPath atScrollPosition:UITableViewScrollPositionBottom animated:YES];
答案 5 :(得分:1)
这对我有用。我只是突出显示它(通过将其淡出来)而不是插入一行。但原则是相同的。
if let definiteIndexPath = indexPathDelegate.getIndexPath(toDoItem) {
UIView.animateWithDuration(0.5, delay: 0, options: UIViewAnimationOptions.CurveEaseInOut, animations: {
self.tableView.scrollToRowAtIndexPath(definiteIndexPath, atScrollPosition: .Middle, animated: false)
}, completion: {
(finished: Bool) -> Void in
// Once the scrolling is done fade the text out and back in.
UIView.animateWithDuration(5, delay: 1, options: .Repeat | .Autoreverse, animations: {
self.tableView.reloadRowsAtIndexPaths([definiteIndexPath], withRowAnimation: UITableViewRowAnimation.Fade)
}, completion: nil)
})
}
答案 6 :(得分:1)
示例:
YOUR_ARRAY.append("new string")
tableView.insertRows(at: [IndexPath(row: YOUR_ARRAY.count-1, section: 0)], with: .automatic)
tableView.scrollToRow(at: IndexPath(row: YOUR_ARRAY.count-1, section: 0), at: UITableViewScrollPosition.bottom, animated: true)