iOS7 之后 presentviewcontroller 延迟的解决方案

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方法只是一个空方法就行

posted @ 2015-12-18 12:06  沈健  阅读(272)  评论(0编辑  收藏  举报