私はXcodeのビューコントローラで書いたコードを持っています。そのコードの前に、NEXTTIPというボタンさえも機能します。しかし、アニメーションに追加した後、アニメーションが出なくなり、ボタンが機能しなくなりました。助けてください!「フェードインとアウト」アニメーションが機能しません
@IBAction func nextTip(sender: AnyObject) {
func hideTip() {
UIView.animateWithDuration(0.5,
animations: {
self.titleLabel.alpha = 0
self.contentLabel.alpha = 0
self.imageView.alpha = 0
},
completion: { finished in
self.showTip
}
)
}
func showTip() {
titleLabel.text = "For healthy teeth, don't brush after eating"
contentLabel.text = "Don't brush your teeth immediately after meals and drinks, especially if they were acidic. Wait 30 to 60 minutes before brushing."
imageView.image = UIImage(named:"teeth.jpg")
UIView.animateWithDuration(0.5,
animations: {
})
}
}
私はそれを動作することはできません。 – ShibekNet101