ios – 重新加载表动画

前端之家收集整理的这篇文章主要介绍了ios – 重新加载表动画前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
因此,当用户点击我的表格中的单元格时,我实际上并没有推送到新的视图控制器,而只是重新加载该tableView中的数据.

但是,我希望得到一个效果类似于我推动新视图控制器时的效果.

有没有人知道我如何将旧内容从屏幕上的旧内容和新内容放到屏幕上以获取整个表格?

解决方法

根据您可以使用的部分数量 – (void)reloadSections:(NSIndexSet *)部分withRowAnimation:(UITableViewRowAnimation)动画

所以你可以这样做:

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
    [tableView deselectRowAtIndexPath:indexPath animated:YES];
    [tableView reloadSections:[NSIndexSet indexSetWithIndexesInRange:NSMakeRange(0,[self numberOfSectionsInTableView])] withRowAnimation:UITableViewRowAnimationRight];
}
原文链接:https://www.f2er.com/iOS/332054.html

猜你在找的iOS相关文章