I had the same two error messages. In my case, errors appeared when I called [[UIApplication sharedApplication] openURL:url] after the user selected a button in the open UIAlertController . I assumed that the warning was trying to close at the same time as I was trying to open the url. So, I introduced a slight delay and the error message disappeared.
dispatch_after(0.2, dispatch_get_main_queue(), ^{ [[UIApplication sharedApplication] openURL:url]; });
Not sure if this helps with your specific problem, but I thought it might be useful to share.
nurider Sep 30 '15 at 13:38 2015-09-30 13:38
source share