倒數第五天竟然寫不出一個完整個結果!!!
今天試了一整天,想要把 image 配合 UIDevice.current.orientation , 當orientation = "landscaps"或 "portrait",imageivew會呈現不同的圖片。
因此我另外寫一個function
func rotated() {
if UIDeviceOrientationIsLandscape(UIDevice.current.orientation) {
print("landscape")
myImageView = UIImageView(image: UIImage(named: "03.jpg"))
} else if UIDeviceOrientationIsPortrait(UIDevice.current.orientation) {
print("portrait")
myImageView = UIImageView(image: UIImage(named: "01.jpg"))
}
}
並且在viewDidLoad
和 viewWillTransition
的時候呼叫,結果圖片依然保持在同一個沒有改變。
今天沒有圖可以發!!! 只好先這樣明天再繼續~~~