我在装有 iOS 7 的 iPhone 上试用了我的应用程序,除了一件事外,一切都运行良好。在 iOS 6 版本上,当我执行以下代码时,加载 View (带有事件指示器)在加载结束时出现并消失。在 iOS 7 上, View 在加载过程中根本不会出现。
self.loadingView.alpha = 1.0;
[self performSelectorselector(accessServices) withObject:nil afterDelay:0.0f];
AccessServices 方法:
- (void)accessServices {
// Getting JSON stuff
// The code is OK, I just don't copy/paste it here
self.loadingView.alpha = 0.0;
}
会发生什么?这是 iOS 7 的错误吗?
我没想到上述代码的行为会发生变化,尽管它可能无法按您期望的方式工作我并不感到惊讶。如果您在主队列上执行 JSON 操作,您的代码将依赖于 UI 更新何时发生的特性,而不是使其显式化。
您可能希望将 JSON 代码显式分派(dispatch)到后台队列,然后将最终的 UI 更新分派(dispatch)回主队列。这样的标准模式是:
self.loadingView.alpha = 1.0;
dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{
// Getting JSON stuff
// The code is OK, I just don't copy/paste it here
dispatch_async(dispatch_get_main_queue(), ^{
self.loadingView.alpha = 0.0;
});
});
您可以使用 GCD(如上)或操作队列,或其他任何东西。但想法是一样的,UI 更新应该发生在主队列上,而任何远程计算昂贵或缓慢的事情都应该发生在后台队列上。
无论 iOS 版本如何,此模式都应该有效。
关于ios - 由于 iOS 7, View 没有出现,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18871908/
欢迎光临 OStack程序员社区-中国程序员成长平台 (https://ostack.cn/) | Powered by Discuz! X3.4 |