My iOS app (the iOS to be exactly) shows an popup asking for permission to use user's location at the first time launching - """ Would Like to Use Your Current Location" with two buttons "Don't Allow" and "OK". I tried: SLAlert *locationAlert = [SLAlert alertWithTitle:@"\"\" Would Like to Use Your Current Location"]; SLAlertHandler *okHandler = [locationAlert dismissWithButtonTitled:@"OK"]; [SLAlertHandler addHandler:okHandler]; but Instruments says "Could not start script, target application is not frontmost."
So how to dismiss this popup with Subliminal? Thanks.