簡體   English   中英

iOS13:當我嘗試以橫向模式打開UIViewController時,應用程序凍結

[英]iOS13: When I try to open a UIViewController in landscape mode, the application freezes

當我嘗試在iOS13上以橫向模式打開UIViewController時,應用程序凍結。 (如果您之前沒有旋轉過屏幕,如果在打開此屏幕之前用手旋轉了手機,則不會發fr)。 在以前的版本中效果很好。

- (BOOL)shouldAutorotate
{
    return NO;
}

- (UIInterfaceOrientationMask)supportedInterfaceOrientations
{
    return UIInterfaceOrientationMaskLandscapeLeft;
}

我該如何克服這個問題? 看起來像蘋果方面的錯誤


在控制台的凍結時刻,我看到了

XPC連接中斷

重新加載模擬器。 我曾與UIAlertView遇到相同的錯誤

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM