背景#
升級 Xcode 13.3 之前,Debug 和 Archive 都沒問題;升級 Xcode 13.3 之後,Debug 沒問題,Archive 就報錯。錯誤訊息是error: Abort trap: 6 (in target 'ZLPhotoBrowser' from project 'Pods')
,於是提了個 issue,目前已解決。
解決方案是:
"You can work around this issue by replacing UI_USER_INTERFACE_IDIOM() with UIDevice.current.userInterfaceIdiom.
這裡記錄分享一下,如果遇到同樣問題的,可以搜一下,看是否同樣是因為UI_USER_INTERFACE_IDIOM()
。