我正在使用apportable在Android上移植我的iOS应用。
我有两个版本的用户界面。一个有屏幕旋转,另一个只有肖像模式。我决定在方法中使用哪个版本
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions;
基于物理屏幕尺寸。我的应用程序仅在纵向模式下启动,然后在我的一个案例中,我需要解锁其他方向。任何想法我可以尝试什么? 我已经尝试过Android SDK方法
了activity.setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_USER);
它有效,但我没有收到
- (void) willRotateToInterfaceOrientation:(UIInterfaceOrientation)toInterfaceOrientation duration:(NSTimeInterval)duration
以下方法也从未被调用
-(NSUInteger)supportedInterfaceOrientations