swift5下app强制横屏
2020-04-07 本文已影响0人
Antlers777
1. app->target->Deployment Info->Device Orientaion,

2. 在AppDelegate.swift添加如下代码
func application(_ application: UIApplication, supportedInterfaceOrientationsFor window: UIWindow?) -> UIInterfaceOrientationMask {
return .landscape
}