mirror of
https://github.com/arichornlover/uYouEnhanced.git
synced 2026-04-18 08:52:08 +00:00
Update uYouPlusThemes.xm
This commit is contained in:
parent
bef1d7bc8e
commit
cb9f69c664
1 changed files with 18 additions and 0 deletions
|
|
@ -289,6 +289,15 @@ UIColor* raisedColor = [UIColor colorWithRed:0.035 green:0.035 blue:0.035 alpha:
|
|||
}
|
||||
%end
|
||||
|
||||
%hook UIApplication
|
||||
- (void)applicationDidFinishLaunching:(UIApplication *)application {
|
||||
if (@available(iOS 14.0, *)) {
|
||||
self.window.backgroundColor = [UIColor blackColor];
|
||||
}
|
||||
%orig;
|
||||
}
|
||||
%end
|
||||
|
||||
// Others
|
||||
%hook _ASDisplayView
|
||||
- (void)layoutSubviews {
|
||||
|
|
@ -573,6 +582,15 @@ UIColor *customHexColor;
|
|||
}
|
||||
%end
|
||||
|
||||
%hook UIApplication
|
||||
- (void)applicationDidFinishLaunching:(UIApplication *)application {
|
||||
if (@available(iOS 14.0, *)) {
|
||||
self.window.backgroundColor = [UIColor blackColor];
|
||||
}
|
||||
%orig;
|
||||
}
|
||||
%end
|
||||
|
||||
// Others
|
||||
%hook _ASDisplayView
|
||||
- (void)layoutSubviews {
|
||||
|
|
|
|||
Loading…
Reference in a new issue