OStack程序员社区-中国程序员成长平台

标题: ios - 使用 iOS 7 滑动导航时导航栏出现故障 [打印本页]

作者: 菜鸟教程小白    时间: 2022-12-13 01:42
标题: ios - 使用 iOS 7 滑动导航时导航栏出现故障

当我使用滑动返回上一个 View 时,我的应用出现了奇怪的图形故障。

当我正常滑动并完成滑动手势时,一切正常。

当我取消滑动手势时,即:开始手势但然后向相反方向移动手指以停止手势并停留在当前 View 。

我遇到的问题如果我然后返回上一个屏幕,该 View 的 barbutton 项目与前一个 View 中的 barbutton 项目重叠。

截图: 起点:enter image description here

向后滑动手势和完成手势,转到上一个 View ,正常工作:enter image description here

回扫手势和取消手势,停留在当前屏幕,然后返回上一屏幕,文本按钮重叠:enter image description here

此图形故障仅在强制退出应用并重新启动时才会消失。当然,如果你再次引发故障,它会再次出现。

希望有一些开发人员遇到同样的问题。

编辑,问题原因如下代码:

- (void)resetCacheAndRefreshTableAnimatedBOOL)animated {
    [NSFetchedResultsController deleteCacheWithName:kCDFollowedCacheName];
    [self setSortDescriptorsForFetchRequest:self.fetchedResultsController.fetchRequest];
    NSError *error = nil;
    [self.fetchedResultsController performFetch:&error];
    [self.tableView reloadData];
}

此方法在 ViewWillAppear 中调用。删除方法调用后,问题就消失了。有什么想法吗?



Best Answer-推荐答案


根据 Vikram 的回复和 StackOverflow 的另一个问题设法弄清楚。

所以问题是 [self.tableView reloadData]ViewWillAppear 中被调用。 但是取消滑动时不应重新加载tableview。

此代码可防止在取消滑动时重新加载:

id <UIViewControllerTransitionCoordinator> tc = self.transitionCoordinator;
if (tc && [tc initiallyInteractive])
{
    [tc notifyWhenInteractionEndsUsingBlock:
     ^(id<UIViewControllerTransitionCoordinatorContext> context)
     {
         if (![context isCancelled])
             // not cancelled, do it
             [self resetCacheAndRefreshTableAnimated:YES]; // this will clear the CoreData cache and forces a reload
     }];
}
else // not interactive, do it
    [self resetCacheAndRefreshTableAnimated:YES];       // this will clear the CoreData cache and forces a reload

关于ios - 使用 iOS 7 滑动导航时导航栏出现故障,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25701443/






欢迎光临 OStack程序员社区-中国程序员成长平台 (https://ostack.cn/) Powered by Discuz! X3.4