我面臨以下警告僅在我已創建的UIViewController的新視圖控制器亞類中,警告僅在一個類
Conflicting return type in implementation of 'supportedInterfaceOrientations':
'nsuinteger' (ask 'unsigned long') vs 'UIInterfaceOrientationMask'
(ask 'enum UIInterfaceOrientationMask')
但是,我已使用了相同方法以前在UIViewController的一個子類中,但警告不顯示在該視圖控制器中?
它發生的任何原因?
注*我剛剛切換到XCode 8.1並在其中創建了新類。
僅供參考代碼中使用
- (UIInterfaceOrientation)preferredInterfaceOrientationForPresentation {
return UIInterfaceOrientationPortrait
}
向我們展示該方法。 – NSNoob
@NSNoob:我在這兩個類中都添加了該方法定義的屏幕截圖。 – Bharath
不要添加屏幕截圖,沒有人會偷你的代碼,如果這就是你所害怕的。添加代碼! – NSNoob