码迷,mamicode.com
首页 > 移动开发 > 详细

iOS7 之后 presentviewcontroller 延迟的解决方案

时间:2015-12-18 13:06:23      阅读:215      评论:0      收藏:0      [点我收藏+]

标签:

http://stackoverflow.com/questions/20087408/lag-between-viewwillappear-and-viewdidappear

两种解决方案 :

1. 
dispatch_async(dispatch_get_main_queue(), ^{ [presentingViewController presentViewController:VC animated:YES completion:^{ }]; });

2.

[self performSelectorOnMainThread:@selector(methodName) withObject:nil waitUntilDone:NO];

// methodName方法只是一个空方法就行

iOS7 之后 presentviewcontroller 延迟的解决方案

标签:

原文地址:http://www.cnblogs.com/houtou118/p/5056654.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!