我有一个UITableView,我在程序执行期间动态添加新行。我总是在底部添加新行,当发生这种情况时,我希望表视图滚动到底部并显示新行。
NSInteger oldCount = [self.game count];
dispatch_async( dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_LOW, 0), ^{
//This may take a long time
BOOL gameStateChanged = [self.game update] ;
dispatch_async( dispatch_get_main_queue(), ^{
if (gameStateChanged)
{
NSMutableArray* ipaths = [NSMutableArray arrayWithCapacity:5];
NSInteger newCount = [self.game count];
for (NSInteger i = oldCount; i < newCount; i++)
{
[ipaths addObject:[NSIndexPath indexPathForRow:i inSection:0]];
}
NSIndexPath* ipath = [ipaths lastObject];
[self.wordsTableView insertRowsAtIndexPaths:ipaths
withRowAnimation:UITableViewRowAnimationNone];
[self.wordsTableView scrollToRowAtIndexPath: ipath
atScrollPosition:UITableViewScrollPositionBottom
animated:YES];
}
});
});
问题是它有时会停止滚动。在停止滚动之后,除非用户手动滚动表视图,否则在后续调用相同方法时不会自动滚动。
如果我关闭滚动动画,发送animated:NO
,则效果非常好。怎么会这样?我怎样才能使用动画制作它?
答案 0 :(得分:0)
尝试在调用方法时等待完成...另一种可能性是集成动画:动画块中没有函数......
类似的东西:
[UIView beginAnimations:nil context:nil];
[UIView setAnimationDuration:0.5];
[self.wordsTableView scrollToRowAtIndexPath: ipath
atScrollPosition:UITableViewScrollPositionBottom
animated:NO];
[UIView commitAnimations];
这不是最好的解决方案,但也许有帮助......