added more comments

This commit is contained in:
2020-01-03 14:04:06 +01:00
parent 4749e04a0e
commit dec543bc95
2 changed files with 6 additions and 0 deletions

View File

@ -17,6 +17,7 @@ static void RespringDevice() {
static NSString *nsDomainString = @"com.yaypixxo.kage"; static NSString *nsDomainString = @"com.yaypixxo.kage";
static NSString *nsNotificationString = @"com.yaypixxo.kage/preferences.changed"; static NSString *nsNotificationString = @"com.yaypixxo.kage/preferences.changed";
// declare pref things here (switches, buttons, etc.)
static BOOL enabled; static BOOL enabled;
static BOOL hideQuickActionsBG; static BOOL hideQuickActionsBG;
static BOOL gridSwitcher; static BOOL gridSwitcher;
@ -123,6 +124,7 @@ static void notificationCallback(CFNotificationCenterRef center, void *observer,
%end %end
// SHOW TIME IN LS STATUSBAR END // // SHOW TIME IN LS STATUSBAR END //
// LISTENERS
%ctor { %ctor {
// prefs changed listener // prefs changed listener
notificationCallback(NULL, NULL, NULL, NULL, NULL); notificationCallback(NULL, NULL, NULL, NULL, NULL);

View File

@ -13,6 +13,7 @@
-(void)openTwitter { -(void)openTwitter {
NSURL *url; NSURL *url;
// check which of these apps are installed
if ([[UIApplication sharedApplication] canOpenURL:[NSURL URLWithString:@"tweetbot:"]]) { if ([[UIApplication sharedApplication] canOpenURL:[NSURL URLWithString:@"tweetbot:"]]) {
url = [NSURL URLWithString:@"tweetbot:///user_profile/Ra1nPix"]; url = [NSURL URLWithString:@"tweetbot:///user_profile/Ra1nPix"];
} }
@ -29,9 +30,12 @@
url = [NSURL URLWithString:@"https://mobile.twitter.com/Ra1nPix"]; url = [NSURL URLWithString:@"https://mobile.twitter.com/Ra1nPix"];
} }
// open my profile in the app chosen above
// if you're compiling with an iOS 10 or lower sdk you can leave out options:@{} and completionHandler:nil
[[UIApplication sharedApplication] openURL:url options:@{} completionHandler:nil]; [[UIApplication sharedApplication] openURL:url options:@{} completionHandler:nil];
} }
// send respring notification
-(void)saveTapped { -(void)saveTapped {
CFNotificationCenterPostNotification(CFNotificationCenterGetDarwinNotifyCenter(), CFSTR("com.yaypixxo.kage/respring"), NULL, NULL, YES); CFNotificationCenterPostNotification(CFNotificationCenterGetDarwinNotifyCenter(), CFSTR("com.yaypixxo.kage/respring"), NULL, NULL, YES);
} }