Hi, I understand that Apple has changed the way we can rotate a page. The following code of Erels has worked fine up until IOS 16.x.
Is there a new API to control rotation in the same way?
Is there a new API to control rotation in the same way?
B4X:
Sub Process_Globals
'These global variables will be declared once when the application starts.
'Public variables can be accessed from all modules.
Public App As Application
Public NavControl As NavigationController
Private Page1 As Page
Private Page2 As Page
End Sub
Private Sub Application_Start (Nav As NavigationController)
'SetDebugAutoFlushLogs(True) 'Uncomment if program crashes before all logs are printed.
NavControl = Nav
Page1.Initialize("Page1")
Page1.RootPanel.LoadLayout("1")
NavControl.ShowPage(Page1)
Page2.Initialize("Page2")
Page2.RootPanel.Color = Colors.Red
End Sub
Sub Page1_Click
NavControl.ShowPage(Page2)
End Sub
Sub Main_ShouldAutoRotate As Boolean
If Page2.Visible = True Then
Return False 'Don't auto rotate if Page2 is visible
Else
Return True
End If
End Sub
#if OBJC
@end
@interface UINavigationController (B4IResize)
@end
@implementation UINavigationController (B4IResize)
- (BOOL)shouldAutorotate
{
return [(NSNumber*)[B4IObjectWrapper raiseEvent:self :@"_shouldautorotate" :nil] boolValue];
}
#End If