|
|
@@ -114,6 +114,36 @@ double delayInSeconds = 0.13; |
|
|
|
%hook AVTransportControlsView |
|
|
|
int test = 30; |
|
|
|
|
|
|
|
// iOS 13 |
|
|
|
-(AVTransportControlsView *)initWithFrame:(CGRect)frame styleSheet:(id)arg2{ |
|
|
|
AVTransportControlsView *origself = %orig(frame,arg2); |
|
|
|
CFNotificationCenterAddObserver(CFNotificationCenterGetDarwinNotifyCenter(), |
|
|
|
(void*)myObserver, |
|
|
|
lockButton, |
|
|
|
CFSTR("avlock.lockButton"), |
|
|
|
NULL, |
|
|
|
CFNotificationSuspensionBehaviorDeliverImmediately); |
|
|
|
CFNotificationCenterAddObserver(CFNotificationCenterGetDarwinNotifyCenter(), |
|
|
|
(void*)myObserver, |
|
|
|
unlockButton, |
|
|
|
CFSTR("avlock.unlockButton"), |
|
|
|
NULL, |
|
|
|
CFNotificationSuspensionBehaviorDeliverImmediately); |
|
|
|
button = [UIButton buttonWithType:UIButtonTypeCustom]; |
|
|
|
[button addTarget:self action:@selector(orientationButtonPressed) forControlEvents:UIControlEventTouchUpInside]; |
|
|
|
CFNotificationCenterPostNotification(CFNotificationCenterGetDarwinNotifyCenter(), CFSTR("avlock.firstUpdate"), (void*)myObserver, NULL, true); |
|
|
|
button.contentMode = UIViewContentModeScaleAspectFit; |
|
|
|
|
|
|
|
button.imageEdgeInsets = UIEdgeInsetsMake(10, 10, 10, 10); |
|
|
|
|
|
|
|
[self addSubview:button]; |
|
|
|
[[UIDevice currentDevice] beginGeneratingDeviceOrientationNotifications]; |
|
|
|
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(deviceOrientationDidChange) name:UIDeviceOrientationDidChangeNotification object:nil]; |
|
|
|
|
|
|
|
return origself; |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// iOS 12 |
|
|
|
-(AVTransportControlsView *)initWithFrame:(CGRect)frame styleSheet:(id)arg2 captureView:(id)arg3{ |