First of all, I know what this means. The problem is that I\'m getting this error on standard calls that can\'t be converted to background calls. I\'m getting this erro
Wrap the calls in...
dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{
PFInstallation *currentInstallation = [PFInstallation currentInstallation];
dispatch_async(dispatch_get_main_queue(), ^(void){
// any UI updates need to happen in here back on the main thread
});
})
and you will no longer see the warnings.