Wenn ich versuche Typ My Func Zurück bekomme ich diesen Fehler in AppDalgate.SwiftVerwendung von ungelösten Bezeichner 'checkOrientation' Swift
AppDalgate.Swift
func application (application: UIApplication, supportedInterfaceOrientationsForWindow window: UIWindow?) -> UIInterfaceOrientationMask {
return checkOrientation(self.window?.rootViewController)
}
Dieser Code für ViewController.Swift
func checkOrientation(viewController:UIViewController?)-> Int{
if(viewController == nil){
return Int(UIInterfaceOrientationMask.All.rawValue)//All means all orientation
}else if (viewController is LoginViewController){
return Int(UIInterfaceOrientationMask.Portrait.rawValue)//This is sign in view controller that i only want to set this to portrait mode only
}else{
return checkOrientation(viewController!.presentedViewController)
}
}
Es ist auch unklar, was Sie von rekursiv Aufruf 'checkOrientation' – Ike10