]> git.saurik.com Git - safemode-ios.git/commitdiff
On iOS 7, fix dialog pop on unlock (parrotgeek1).
authorJay Freeman (saurik) <saurik@saurik.com>
Wed, 15 Jan 2014 12:28:37 +0000 (04:28 -0800)
committerJay Freeman (saurik) <saurik@saurik.com>
Wed, 15 Jan 2014 12:28:44 +0000 (04:28 -0800)
Tweak.xm

index cbab28d24c4cf9820e1d4dc47947244c2d03c41c..e91b4b6f18f72909bff743c7ada05f6788fee5b3 100644 (file)
--- a/Tweak.xm
+++ b/Tweak.xm
@@ -205,6 +205,15 @@ static void AlertIfNeeded() {
     MSAlert();
 }
 
+// on iOS 7 (maybe also iOS 6) we should really just hook the unlock mechanism
+// XXX: deterine where this works and maybe unify this code
+
+%hook SBLockScreenManager
+- (void) _finishUIUnlockFromSource:(int)source withOptions:(id)options {
+    %orig;
+    AlertIfNeeded();
+} %end
+
 
 // on iOS 4.3 and above we can use this advertisement, which seems to check every time the user unlocks
 // XXX: verify that this still works on iOS 5.0