Error : "fatal error: unexpectedly found nil while unwrapping an Optional value" during transition between two view on same view controller轉換時致命錯誤
當我打電話Flip1
函數它給了我上面的錯誤。
下面的代碼:
@IBAction func Flip(_ sender: AnyObject){
UIView.transition(from: Back, to: Front, duration: 0.5, options: UIViewAnimationOptions.transitionFlipFromLeft, completion: nil)
}
@IBAction func Flip1(_ sender: AnyObject){
UIView.transition(from: Front, to: Back, duration: 1, options: UIViewAnimationOptions.transitionFlipFromRight, completion: nil)
}
後視圖或前視圖必須爲零。您是使用故事板中的還是什麼? –
@GarimaSaini yes故事板 –
您是否檢查過您的網點'Front'和'Back'是否分配在故事板中? – clemens