Li Xiaolu

Results 1 comments of Li Xiaolu

@wangrui460 我先用一个临时方法兼容着,期待大佬能从源代码上适配“灵动岛” ``` #import NS_ASSUME_NONNULL_BEGIN @interface UINavigationBar (dynamic_island) @end NS_ASSUME_NONNULL_END ``` ``` #import "UINavigationBar+dynamic_island.h" #import @implementation UINavigationBar (dynamic_island) +(void)initialize { static dispatch_once_t token; dispatch_once(&token, ^{ //backgroundViewFrame SEL orginSel = NSSelectorFromString(@"backgroundViewFrame");...