28 lines
694 B
Objective-C
28 lines
694 B
Objective-C
//
|
|
// SCNavigationController.m
|
|
// SellyCloudSDK_Example
|
|
//
|
|
// Created by Caleb on 12/18/25.
|
|
//
|
|
|
|
#import "SCNavigationController.h"
|
|
|
|
@implementation SCNavigationController
|
|
|
|
// 让 topViewController 决定是否支持旋转
|
|
- (BOOL)shouldAutorotate {
|
|
return self.topViewController.shouldAutorotate;
|
|
}
|
|
|
|
// 让 topViewController 决定支持哪些方向
|
|
- (UIInterfaceOrientationMask)supportedInterfaceOrientations {
|
|
return self.topViewController.supportedInterfaceOrientations;
|
|
}
|
|
|
|
// 让 topViewController 决定首选方向
|
|
- (UIInterfaceOrientation)preferredInterfaceOrientationForPresentation {
|
|
return self.topViewController.preferredInterfaceOrientationForPresentation;
|
|
}
|
|
|
|
@end
|