iOS 关于presentViewController/dismissViewControllerAnimated时出现的延迟处理
在需要presentVC的时候有时候会出现延迟,或者无响应,这个时候需要把presentVC的方法放到主线程里面,__weaktypeof(self)weakSelf=self;dispatch_async(dispatch_get_main_queue(),^(void){[weakSelfpresentViewController:vcanimated:YEScompletion:nil];}