-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathTweak.xm
More file actions
93 lines (76 loc) · 2.67 KB
/
Tweak.xm
File metadata and controls
93 lines (76 loc) · 2.67 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
#import <objc/runtime.h>
@interface AVPlayerViewController : UIViewController
@end
@interface MPMoviePlayerViewController : UIViewController
@end
@interface UIDevice (HorizontalVideos)
-(void)setOrientation:(UIInterfaceOrientation)arg1;
@end
UIInterfaceOrientation lastViableOrientation = UIInterfaceOrientationLandscapeRight;
UIInterfaceOrientation previousOrientation = UIInterfaceOrientationPortrait;
BOOL ignorePortrait = NO;
void rotateToLandscape() {
previousOrientation = [UIDevice currentDevice].orientation;
[[UIDevice currentDevice] setOrientation:lastViableOrientation];
[UIViewController attemptRotationToDeviceOrientation];
ignorePortrait = YES;
}
void rotateToPrevious() {
ignorePortrait = NO;
[[UIDevice currentDevice] setOrientation:previousOrientation];
UIInterfaceOrientation orientation = [UIDevice currentDevice].orientation;
if (UIInterfaceOrientationIsLandscape(orientation))
lastViableOrientation = orientation;
}
%hook AVPlayerViewController
-(void)viewDidAppear:(BOOL)arg1 {
rotateToLandscape();
%orig(arg1);
}
-(void)viewWillDisappear:(BOOL)arg1 {
rotateToPrevious();
%orig(arg1);
}
-(void)viewWillTransitionToSize:(CGSize)arg1 withTransitionCoordinator:(id)arg2 {
if (arg1.width > arg1.height) {
%orig(arg1, arg2);
lastViableOrientation = [UIDevice currentDevice].orientation;
} else if (ignorePortrait) {
CGAffineTransform targetRotation = [arg2 targetTransform];
CGAffineTransform inverseRotation = CGAffineTransformInvert(targetRotation);
[[UIDevice currentDevice] setOrientation:lastViableOrientation];
[arg2 animateAlongsideTransition:^(id context) {
self.view.transform = CGAffineTransformConcat(self.view.transform, inverseRotation);
self.view.frame = [UIScreen mainScreen].bounds;
} completion:^(id context) {}];
} else {
%orig(arg1, arg2);
}
}
%end
%hook MPMoviePlayerViewController
-(void)viewDidAppear:(BOOL)arg1 {
rotateToLandscape();
%orig(arg1);
}
-(void)viewWillDisappear:(BOOL)arg1 {
rotateToPrevious();
%orig(arg1);
}
-(void)viewWillTransitionToSize:(CGSize)arg1 withTransitionCoordinator:(id)arg2 {
if (arg1.width > arg1.height) {
%orig(arg1, arg2);
lastViableOrientation = [UIDevice currentDevice].orientation;
} else if (ignorePortrait) {
CGAffineTransform targetRotation = [arg2 targetTransform];
CGAffineTransform inverseRotation = CGAffineTransformInvert(targetRotation);
[[UIDevice currentDevice] setOrientation:lastViableOrientation];
[arg2 animateAlongsideTransition:^(id context) {
self.view.transform = CGAffineTransformConcat(self.view.transform, inverseRotation);
self.view.frame = [UIScreen mainScreen].bounds;
} completion:^(id context) {}];
} else {
%orig(arg1, arg2);
}
}
%end