镜像自地址
https://github.com/exoticswingset/DualSBAdoption.git
已同步 2025-06-30 21:56:46 +00:00
17 行
382 B
Plaintext
17 行
382 B
Plaintext
@interface CSTeachableMomentsContainerView { }
|
|
@property (nonatomic,retain) UIView * controlCenterGrabberView;
|
|
@end
|
|
|
|
%hook UIStatusBar_Modern
|
|
-(void)setAlpha:(CGFloat)arg1 {
|
|
%orig(0.0); // makes status bar transparent on lock screen
|
|
}
|
|
|
|
%end
|
|
|
|
%hook CSTeachableMomentsContainerView
|
|
- (void)layoutSubviews {
|
|
[self.controlCenterGrabberView setHidden:YES];
|
|
return %orig;
|
|
}
|
|
%end |