Skip to content

Instantly share code, notes, and snippets.

@wabzqem
Created September 22, 2020 13:21
Show Gist options
  • Save wabzqem/bab400b3757324d177b3b030d923e36a to your computer and use it in GitHub Desktop.
Save wabzqem/bab400b3757324d177b3b030d923e36a to your computer and use it in GitHub Desktop.
function launchInfoViewController() {
ObjC.schedule(ObjC.mainQueue, function() {
var application = ObjC.classes.UIApplication.sharedApplication();
var viewController = application.keyWindow().rootViewController();
viewController.presentedViewController().performSegueWithIdentifier_sender_("HomeToDebugSegue", NULL);
});
}
// Sloppy and good enough. Wait for the Main VC to be presented.
setTimeout(launchInfoViewController, 7000);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment