Last active
December 18, 2015 08:29
-
-
Save wearhere/5754912 to your computer and use it in GitHub Desktop.
Dismiss an in-app purchase alert by tapping "Buy," using Subliminal. Subliminal then generates the JavaScript shown here: https://gist.github.com/wearhere/5754930. http://inkling.github.io/Subliminal
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
SLAlert *buyAlert = [SLAlert alertWithTitle:@"Confirm Your In-App Purchase"]; | |
SLAlertHandler *buyHandler = [buyAlert dismissWithButtonTitled:@"Buy"]; | |
[SLAlertHandler addHandler:buyHandler]; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment