我似乎無法在Xcode中製作一個簡單的淡入淡出動畫。簡單的動畫問題Xcode 7 Swift
我想要做的就是在viewDidLoad(它工作正常)後2秒內使圖像淡入淡出,但是一旦我爲淡出動畫添加代碼,圖像永遠不會被隱藏起來。
這裏是我的代碼:
image.alpha = 0
UIView.animateWithDuration(1, delay: 2, options: [], animations: {() -> Void in
self.image.alpha = 1
}, completion: nil)
UIView.animateWithDuration(1, delay: 3, options: [], animations: {() -> Void in
self.image.alpha = 0
}, completion: nil)
我使用UIImages的動畫。