|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687 |
- #line 1 "Tweak.xm"
-
-
-
-
-
-
-
-
-
-
-
- #import "ZenithDark.h"
-
-
-
-
- #include <substrate.h>
- #if defined(__clang__)
- #if __has_feature(objc_arc)
- #define _LOGOS_SELF_TYPE_NORMAL __unsafe_unretained
- #define _LOGOS_SELF_TYPE_INIT __attribute__((ns_consumed))
- #define _LOGOS_SELF_CONST const
- #define _LOGOS_RETURN_RETAINED __attribute__((ns_returns_retained))
- #else
- #define _LOGOS_SELF_TYPE_NORMAL
- #define _LOGOS_SELF_TYPE_INIT
- #define _LOGOS_SELF_CONST
- #define _LOGOS_RETURN_RETAINED
- #endif
- #else
- #define _LOGOS_SELF_TYPE_NORMAL
- #define _LOGOS_SELF_TYPE_INIT
- #define _LOGOS_SELF_CONST
- #define _LOGOS_RETURN_RETAINED
- #endif
-
- @class ZNGrabberAccessoryView;
- static void (*_logos_orig$_ungrouped$ZNGrabberAccessoryView$traitCollectionDidChange$)(_LOGOS_SELF_TYPE_NORMAL ZNGrabberAccessoryView* _LOGOS_SELF_CONST, SEL, UITraitCollection *); static void _logos_method$_ungrouped$ZNGrabberAccessoryView$traitCollectionDidChange$(_LOGOS_SELF_TYPE_NORMAL ZNGrabberAccessoryView* _LOGOS_SELF_CONST, SEL, UITraitCollection *); static void (*_logos_orig$_ungrouped$ZNGrabberAccessoryView$setBackgroundColor$)(_LOGOS_SELF_TYPE_NORMAL ZNGrabberAccessoryView* _LOGOS_SELF_CONST, SEL, UIColor *); static void _logos_method$_ungrouped$ZNGrabberAccessoryView$setBackgroundColor$(_LOGOS_SELF_TYPE_NORMAL ZNGrabberAccessoryView* _LOGOS_SELF_CONST, SEL, UIColor *);
-
- #line 16 "Tweak.xm"
-
-
- static void _logos_method$_ungrouped$ZNGrabberAccessoryView$traitCollectionDidChange$(_LOGOS_SELF_TYPE_NORMAL ZNGrabberAccessoryView* _LOGOS_SELF_CONST __unused self, SEL __unused _cmd, UITraitCollection * previousTraitCollection) {
- _logos_orig$_ungrouped$ZNGrabberAccessoryView$traitCollectionDidChange$(self, _cmd, previousTraitCollection);
- if (@available(iOS 13, *)) {
- if (self.traitCollection.userInterfaceStyle == UIUserInterfaceStyleDark) {
- [self setBackgroundColor:kDarkModeColor];
- }
-
- else {
- [self setBackgroundColor:kLightModeColor];
- }
- }
- }
-
-
-
- static void _logos_method$_ungrouped$ZNGrabberAccessoryView$setBackgroundColor$(_LOGOS_SELF_TYPE_NORMAL ZNGrabberAccessoryView* _LOGOS_SELF_CONST __unused self, SEL __unused _cmd, UIColor * backgroundColor) {
-
- if (@available(iOS 13, *)) {
- if (self.traitCollection.userInterfaceStyle == UIUserInterfaceStyleDark) {
- _logos_orig$_ungrouped$ZNGrabberAccessoryView$setBackgroundColor$(self, _cmd, kDarkModeColor);
- }
-
- else {
- _logos_orig$_ungrouped$ZNGrabberAccessoryView$setBackgroundColor$(self, _cmd, backgroundColor);
- }
- }
- }
-
-
-
-
-
-
-
- static __attribute__((constructor)) void _logosLocalCtor_da6b7450(int __unused argc, char __unused **argv, char __unused **envp) {
-
-
-
- dlopen ("/Library/MobileSubstrate/DynamicLibraries/Zenith.dylib", RTLD_NOW);
-
- }
- static __attribute__((constructor)) void _logosLocalInit() {
- {Class _logos_class$_ungrouped$ZNGrabberAccessoryView = objc_getClass("ZNGrabberAccessoryView"); MSHookMessageEx(_logos_class$_ungrouped$ZNGrabberAccessoryView, @selector(traitCollectionDidChange:), (IMP)&_logos_method$_ungrouped$ZNGrabberAccessoryView$traitCollectionDidChange$, (IMP*)&_logos_orig$_ungrouped$ZNGrabberAccessoryView$traitCollectionDidChange$);MSHookMessageEx(_logos_class$_ungrouped$ZNGrabberAccessoryView, @selector(setBackgroundColor:), (IMP)&_logos_method$_ungrouped$ZNGrabberAccessoryView$setBackgroundColor$, (IMP*)&_logos_orig$_ungrouped$ZNGrabberAccessoryView$setBackgroundColor$);} }
- #line 59 "Tweak.xm"
|