ADColony 视频广告因方向改变导致应用程序崩溃
ADColony video ad crashes the app due to orientation change
我第一次播放 ADColony 广告时一切正常,但第二次播放广告时它没有占据整个屏幕,在我关闭广告后应用程序崩溃并显示日志:
由于未捕获的异常 'UIApplicationInvalidInterfaceOrientation',正在终止应用程序,原因:'Supported orientations has no common orientation with the application, and [ADCRotatingViewController shouldAutorotate] is returning YES'
我的应用程序编码为 swift,它 returns shouldAutorotate() 为 false,支持的方向为 UIInterfaceOrientation.Portrait.rawValue | UIInterfaceOrientation.LandscapeLeft.rawValue
override func shouldAutorotate() -> Bool {
return false
}
override func supportedInterfaceOrientations() -> Int {
return UIInterfaceOrientation.Portrait.rawValue | UIInterfaceOrientation.LandscapeLeft.rawValue
}
请帮我解决这个问题。
听起来您正在与我们旧版本的 SDK 集成。请尝试使用 http://github.com/adcolony 上的最新可用版本进行更新。如果这不能解决您的问题,请提交支持票到 support@adcolony.com.
我第一次播放 ADColony 广告时一切正常,但第二次播放广告时它没有占据整个屏幕,在我关闭广告后应用程序崩溃并显示日志:
由于未捕获的异常 'UIApplicationInvalidInterfaceOrientation',正在终止应用程序,原因:'Supported orientations has no common orientation with the application, and [ADCRotatingViewController shouldAutorotate] is returning YES'
我的应用程序编码为 swift,它 returns shouldAutorotate() 为 false,支持的方向为 UIInterfaceOrientation.Portrait.rawValue | UIInterfaceOrientation.LandscapeLeft.rawValue
override func shouldAutorotate() -> Bool {
return false
}
override func supportedInterfaceOrientations() -> Int {
return UIInterfaceOrientation.Portrait.rawValue | UIInterfaceOrientation.LandscapeLeft.rawValue
}
请帮我解决这个问题。
听起来您正在与我们旧版本的 SDK 集成。请尝试使用 http://github.com/adcolony 上的最新可用版本进行更新。如果这不能解决您的问题,请提交支持票到 support@adcolony.com.