浏览代码

Version 1.0.1

Fixed tweak not working inside the Apollo Reddit app (simplified to using only AVTransportControlsView instead of AVFullScreenViewController to increase compatability in modified video players).
master
Gil Shahar 7 年前
父节点
当前提交
4b817934ed
没有帐户链接到提交者的电子邮件
共有 3 个文件被更改,包括 10 次插入31 次删除
  1. +9
    -30
      Tweak.xm
  2. 二进制
      com.gilshahar7.avlock_1.0.1_iphoneos-arm.deb
  3. +1
    -1
      control

+ 9
- 30
Tweak.xm 查看文件



@end @end


@interface AVPlaybackControlsView
@property (assign, nonatomic) AVTransportControlsView *transportControlsView;
@end

@interface AVPlayerViewControllerContentView
@property (assign, nonatomic) AVPlaybackControlsView *playbackControlsView;
@end

@interface AVFullScreenViewController
@property (assign, nonatomic) AVPlayerViewControllerContentView *contentView;
@end






extern "C" CFNotificationCenterRef CFNotificationCenterGetDistributedCenter(void); extern "C" CFNotificationCenterRef CFNotificationCenterGetDistributedCenter(void);


} }


%hook AVFullScreenViewController
int test = 30;
-(void)viewDidLayoutSubviews{
%orig;
if(test > 1){
[self.contentView.playbackControlsView.transportControlsView deviceOrientationDidChange];
test--;;
}

}

-(void)viewDidDisappear:(bool)arg1{
%orig;
test = 10;
}
%end


%hook SBOrientationLockManager %hook SBOrientationLockManager
-(SBOrientationLockManager*)init{ -(SBOrientationLockManager*)init{




%hook AVTransportControlsView %hook AVTransportControlsView
int test = 30;
-(AVTransportControlsView *)initWithFrame:(CGRect)frame{ -(AVTransportControlsView *)initWithFrame:(CGRect)frame{
AVTransportControlsView *origself = %orig(frame); AVTransportControlsView *origself = %orig(frame);
CFNotificationCenterAddObserver(CFNotificationCenterGetDarwinNotifyCenter(), CFNotificationCenterAddObserver(CFNotificationCenterGetDarwinNotifyCenter(),
-(void)dealloc{ -(void)dealloc{
%orig; %orig;
CFNotificationCenterRemoveObserver ( CFNotificationCenterGetDarwinNotifyCenter(), (void*)myObserver, NULL, NULL); CFNotificationCenterRemoveObserver ( CFNotificationCenterGetDarwinNotifyCenter(), (void*)myObserver, NULL, NULL);
test = 30;
} }



-(void)layoutSubviews{
%orig;
if(test > 1){
[self deviceOrientationDidChange];
test--;;
}
}


%new %new
-(void)deviceOrientationDidChange{ -(void)deviceOrientationDidChange{

二进制
com.gilshahar7.avlock_1.0.1_iphoneos-arm.deb 查看文件


+ 1
- 1
control 查看文件

Package: com.gilshahar7.avlock Package: com.gilshahar7.avlock
Name: AVLock Name: AVLock
Depends: mobilesubstrate Depends: mobilesubstrate
Version: 1.0
Version: 1.0.1
Architecture: iphoneos-arm Architecture: iphoneos-arm
Description: Add an orientation lock button to the iOS 11 stock video player Description: Add an orientation lock button to the iOS 11 stock video player
Maintainer: gilshahar7 Maintainer: gilshahar7

正在加载...
取消
保存