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
#ifndef FILELOGGING | |
#define FILELOGGING | |
#ifndef DEBUG | |
#define FLOG(args...) | |
#else | |
#define kLOGFILEPATH @"/path/to/log/file.log" | |
void _FLog(const char *functionName, int lineNumber, NSString *msgFormat, ...) { | |
va_list ap; |
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
@interface SBLockScreenDateViewController : UIViewController <SBDateTimeOverrideObserver, _UISettingsKeyObserver> { | |
NSNumber* _timerToken; | |
BOOL _disablesUpdates; | |
_UILegibilitySettings* _legibilitySettings; | |
} | |
@property (assign,getter=isSubtitleHidden,nonatomic) BOOL subtitleHidden; | |
@property (nonatomic,retain) _UILegibilitySettings * legibilitySettings; |
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
@interface SBLockScreenDateViewController : UIViewController <SBDateTimeOverrideObserver, _UISettingsKeyObserver> { | |
NSNumber* _timerToken; | |
BOOL _isScreenOn; | |
BOOL _isVisible; | |
BOOL _disablesUpdates; | |
_UILegibilitySettings* _legibilitySettings; | |
} |
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
@implementation SBIconController | |
-(BOOL)_isAppIconForceTouchControllerPeekingOrShowing { | |
if (self->_appIconForceTouchController != nil) | |
return [self->_appIconForceTouchController state] > 0; | |
return NO; | |
} | |
-(void)_dismissAppIconForceTouchControllerIfNecessaryAnimated:(BOOL)arg1 withCompletionHandler:(id)arg2 { | |
if (self->_appIconForceTouchController != nil) | |
[self->_appIconForceTouchController dismissAnimated:arg1 withCompletionHandler:arg2]; |
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
# enable mouse scrolling | |
setw -g mouse on | |
# start with 1 instead of 0 | |
set -g base-index 1 | |
# enable 256 colors | |
set -g default-terminal screen-256color | |
# create new bindings |