Logos
maxkatzmann/SwipeUpLock
–
Tweak.xm
Showing the top two matches.
Last indexed .
|
9
|
#import <UIKit/UIKit.h>
|
|
10
|
|
|
11
|
|
|
12
|
@interface SBAwayView : UIView
|
|
13
|
|
|
14
|
@end
|
|
15
|
|
|
16
|
@interface SBAwayController |
|
17
|
|
|
18
|
- (void)unlockWithSound:(BOOL)arg1;
|
|
19
|
|
|
20
|
@end
|
|
21
|
|
|
22
|
@interface SBAwayController (SwipeUpRecognizer) |
|
23
|
|
|
24
|
- (void)SULhandleLockSwipe:(UISwipeGestureRecognizer *)gesture;
|
Logos
PoomSmart/TweakBattles
–
Tweak.xm
Showing the top five matches.
Last indexed .
|
5
|
+ (SBUserAgent *)sharedUserAgent;
|
|
6
|
- (void)undimScreen;
|
|
7
|
@end
|
|
8
|
|
|
9
|
@interface SBAwayController : NSObject |
|
10
|
+ (SBAwayController *)sharedAwayController; |
| … |
|
|
44
|
uiLocked = [manager isUILocked];
|
|
45
|
}
|
|
46
|
else if (%c(SBAwayController)) { |
|
47
|
SBAwayController *cont = (SBAwayController *)[%c(SBAwayController) sharedAwayController]; |
Logos
conradev/Tweaks
–
Tweak.xm
Showing the top two matches.
Last indexed .
|
3
|
- (void)_clearBlockedState;
|
|
4
|
@end
|
|
5
|
|
|
6
|
@interface SBAwayController : NSObject |
|
7
|
- (void)_clearBlockedState;
|
|
8
|
- (void)clearBlockedStateAndUpdateUI:(BOOL)update;
|
|
9
|
@end
|
|
10
|
|
|
11
|
%hook SBAwayController |
|
12
|
|
|
13
|
- (void)_finishedUnlockAttemptWithStatus:(BOOL)status {
|
Logos
ca/handsfree
–
Tweak.xm
Showing the top match.
Last indexed .
|
1
|
#import <Foundation/Foundation.h>
|
|
2
|
|
|
3
|
#import <UIKit/UIAlertView.h>
|
|
4
|
|
|
5
|
%hook SBAwayController |
|
6
|
|
|
7
|
-(void)deactivate {
|
Logos
mkn0dat/Secret--Now-Playing-
–
Tweak.xm
Showing the top three matches.
Last indexed .
|
4
|
- (id)wallpaperView;
|
|
5
|
- (BOOL)isOnAC;
|
|
6
|
@end
|
|
7
|
|
|
8
|
@interface SBAwayController : NSObject |
|
9
|
{
|
|
10
|
SBUIController *_uiController;
|
| … |
|
|
92
|
SBAwayView *awayView = [(SBAwayController * )[%c(SBAwayController) sharedAwayController] awayView]; |
|
93
|
if (!hidden){
|
Logos
ravirajm/CamSlideshow
–
Tweak.xm
Showing the top match.
Last indexed .
|
4
|
- (void)_slideshowButtonActivated:(id)arg1 {
|
|
5
|
[[%c(SBAwayController) sharedAwayController] unlockFromSource:1 playSound:NO]; |
|
6
|
SBApplication *app = [[%c(SBApplicationController) sharedInstance] applicationWithDisplayIdentifier:@"com.apple.camera"];
|
Logos
varju/RemindMeLater
–
RemindMeLater.xm
Showing the top match.
Last indexed .
|
11
|
static Class $SBAlertItemsController = objc_getClass("SBAlertItemsController");
|
|
12
|
static Class $SBAwayController = objc_getClass("SBAwayController"); |
|
13
|
static Class $SBCalendarController = objc_getClass("SBCalendarController");
|
|
14
|
|
|
15
|
static RMLController *controller;
|
Logos
qiaoxueshi/theos_demo
–
Tweak.xm
Showing the top two matches.
Last indexed .
|
1
|
/*
|
|
2
|
@interface SBAwayController |
|
3
|
- (void)activate;
|
|
4
|
@end
|
|
5
|
*/
|
|
6
|
|
|
7
|
|
|
8
|
%hook SBAwayController |
|
9
|
|
|
10
|
- (void)activate {
|