tweak to change the "custom no older notifications" text introduced in iOS 11
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

43 lines
1.4KB

  1. #include "CNONRootListController.h"
  2. //#import <spawn.h>
  3. @implementation CNONRootListController
  4. - (NSArray *)specifiers {
  5. if (!_specifiers) {
  6. _specifiers = [[self loadSpecifiersFromPlistName:@"Root" target:self] retain];
  7. }
  8. return _specifiers;
  9. }
  10. - (void)saveTapped {
  11. [self.view endEditing:YES];
  12. CFNotificationCenterPostNotification(CFNotificationCenterGetDarwinNotifyCenter(), CFSTR("com.yaypixxo.cnon/respring"), NULL, NULL, YES);
  13. }
  14. - (void)openTwitter {
  15. NSURL *url;
  16. if ([[UIApplication sharedApplication] canOpenURL:[NSURL URLWithString:@"tweetbot:"]]) {
  17. url = [NSURL URLWithString:@"tweetbot:///user_profile/Ra1nPix"];
  18. }
  19. else if ([[UIApplication sharedApplication] canOpenURL:[NSURL URLWithString:@"twitterrific:"]]) {
  20. url = [NSURL URLWithString:@"twitterrific:///profile?screen_name=Ra1nPix"];
  21. }
  22. else if ([[UIApplication sharedApplication] canOpenURL:[NSURL URLWithString:@"tweetings:"]]) {
  23. url = [NSURL URLWithString:@"tweetings:///user?screen_name=Ra1nPix"];
  24. }
  25. else if ([[UIApplication sharedApplication] canOpenURL:[NSURL URLWithString:@"twitter:"]]) {
  26. url = [NSURL URLWithString:@"twitter://user?screen_name=Ra1nPix"];
  27. }
  28. else {
  29. url = [NSURL URLWithString:@"https://mobile.twitter.com/Ra1nPix"];
  30. }
  31. // [[UIApplication sharedApplication] openURL:url options:@{} completionHandler:nil];
  32. [[UIApplication sharedApplication] openURL:url options:@{} completionHandler:nil];
  33. }
  34. @end