We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 41620c1 commit 4c055d7Copy full SHA for 4c055d7
Source/Classes/SLKTextViewController.m
@@ -2152,10 +2152,17 @@ - (void)willRotateToInterfaceOrientation:(UIInterfaceOrientation)toInterfaceOrie
2152
[self slk_prepareForInterfaceRotationWithDuration:duration];
2153
}
2154
2155
+#ifdef __IPHONE_9_0
2156
- (UIInterfaceOrientationMask)supportedInterfaceOrientations
2157
{
2158
return UIInterfaceOrientationMaskAll;
2159
2160
+#else
2161
+- (NSUInteger)supportedInterfaceOrientations
2162
+{
2163
+ return UIInterfaceOrientationMaskAll;
2164
+}
2165
+#endif
2166
2167
- (BOOL)shouldAutorotate
2168
0 commit comments