forked from yaypixxo/CustomNoOlderNotifications
		
	add iOS 13 support
This commit is contained in:
		
							
								
								
									
										51
									
								
								Tweak.xm
									
									
									
									
									
								
							
							
						
						
									
										51
									
								
								Tweak.xm
									
									
									
									
									
								
							@ -1,3 +1,14 @@
 | 
			
		||||
// respring function
 | 
			
		||||
@interface FBSystemService : NSObject
 | 
			
		||||
+(id)sharedInstance;
 | 
			
		||||
-(void)exitAndRelaunch:(bool)arg1;
 | 
			
		||||
@end
 | 
			
		||||
 | 
			
		||||
static void RespringDevice() {
 | 
			
		||||
    [[%c(FBSystemService) sharedInstance] exitAndRelaunch:YES];
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// headers
 | 
			
		||||
@interface SBUILegibilityLabel : UIView
 | 
			
		||||
@property (nonatomic,copy) NSString *string;
 | 
			
		||||
@property (assign,nonatomic) long long textAlignment; 
 | 
			
		||||
@ -25,54 +36,36 @@ static void notificationCallback(CFNotificationCenterRef center, void *observer,
 | 
			
		||||
    NSString *eCustomText = (NSString *)[[NSUserDefaults standardUserDefaults] objectForKey:@"customText" inDomain:nsDomainString];
 | 
			
		||||
 | 
			
		||||
    enabled = (eEnabled) ? [eEnabled boolValue]:NO;
 | 
			
		||||
    customText = eCustomText; //(eCustomText) ? [eCustomText value]:@"";
 | 
			
		||||
    customText = eCustomText;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/*#ifndef kCFCoreFoundationVersionNumber_iOS_13_0
 | 
			
		||||
// check iOS version
 | 
			
		||||
#ifndef kCFCoreFoundationVersionNumber_iOS_13_0
 | 
			
		||||
#define kCFCoreFoundationVersionNumber_iOS_13_0 1665.15
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
#define kSLSystemVersioniOS13 kCFCoreFoundationVersionNumber >= kCFCoreFoundationVersionNumber_iOS_13_0*/
 | 
			
		||||
 | 
			
		||||
/*%group ios13
 | 
			
		||||
 | 
			
		||||
%hook NCNotificationListSectionRevealHintView
 | 
			
		||||
 | 
			
		||||
-(void)setRevealHintTitle:(SBUILegibilityLabel *)arg1 {
 | 
			
		||||
	if (enabled) {
 | 
			
		||||
		arg1 = customText;
 | 
			
		||||
	}
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
%end
 | 
			
		||||
 | 
			
		||||
%end*/
 | 
			
		||||
 | 
			
		||||
//%group ios12
 | 
			
		||||
#define kSLSystemVersioniOS13 kCFCoreFoundationVersionNumber >= kCFCoreFoundationVersionNumber_iOS_13_0
 | 
			
		||||
 | 
			
		||||
// hook class
 | 
			
		||||
%hook NCNotificationListSectionRevealHintView
 | 
			
		||||
 | 
			
		||||
-(void)didMoveToWindow {
 | 
			
		||||
	%orig;
 | 
			
		||||
	if (enabled) {
 | 
			
		||||
		self.revealHintTitle.string = customText;
 | 
			
		||||
		if (kSLSystemVersioniOS13) {
 | 
			
		||||
			self.revealHintTitle.textAlignment = 1;
 | 
			
		||||
		}
 | 
			
		||||
	}
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
%end
 | 
			
		||||
 | 
			
		||||
//%end
 | 
			
		||||
 | 
			
		||||
%ctor {
 | 
			
		||||
	// check iOS version
 | 
			
		||||
    /*if (kSLSystemVersioniOS13) {
 | 
			
		||||
        %init(ios13);
 | 
			
		||||
    }
 | 
			
		||||
    else {
 | 
			
		||||
        %init(ios12);
 | 
			
		||||
    }*/
 | 
			
		||||
 | 
			
		||||
	// prefs changed listener
 | 
			
		||||
    notificationCallback(NULL, NULL, NULL, NULL, NULL);
 | 
			
		||||
    CFNotificationCenterAddObserver(CFNotificationCenterGetDarwinNotifyCenter(), NULL, notificationCallback, (CFStringRef)nsNotificationString, NULL, CFNotificationSuspensionBehaviorCoalesce);
 | 
			
		||||
 | 
			
		||||
    // respring notification listener
 | 
			
		||||
    CFNotificationCenterAddObserver(CFNotificationCenterGetDarwinNotifyCenter(), NULL, (CFNotificationCallback)RespringDevice, CFSTR("com.yaypixxo.cnon/respring"), NULL, CFNotificationSuspensionBehaviorDeliverImmediately);
 | 
			
		||||
}
 | 
			
		||||
@ -13,6 +13,7 @@
 | 
			
		||||
 | 
			
		||||
- (void)apply {
 | 
			
		||||
	[self.view endEditing:YES];
 | 
			
		||||
	CFNotificationCenterPostNotification(CFNotificationCenterGetDarwinNotifyCenter(), CFSTR("com.yaypixxo.cnon/respring"), NULL, NULL, YES);
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
- (void)openTwitter {
 | 
			
		||||
 | 
			
		||||
@ -44,7 +44,7 @@
 | 
			
		||||
			<key>action</key>
 | 
			
		||||
			<string>apply</string>
 | 
			
		||||
			<key>label</key>
 | 
			
		||||
			<string>Apply</string>
 | 
			
		||||
			<string>Respring</string>
 | 
			
		||||
		</dict>
 | 
			
		||||
		<dict>
 | 
			
		||||
			<key>cell</key>
 | 
			
		||||
 | 
			
		||||
		Reference in New Issue
	
	Block a user