同じViewで遷移アニメーションを使う
画面遷移する際のアニメーションを、同じViewで表示を切り替えるタイミングで使用する方法。
@IBAction func Button(sender: AnyObject) {
if Label.text == "A" {
UIView.transitionWithView(self.view, duration: 0.725, options: .TransitionFlipFromLeft, animations: {
// animation
self.Label.text = "B"
}, completion: { (finished: Bool) -> () in
// completion
})
}else{
UIView.transitionWithView(self.view, duration: 0.725, options: .TransitionFlipFromRight, animations: {
// animation
self.Label.text = "A"
}, completion: { (finished: Bool) -> () in
// completion
})
}
}
参考
Author And Source
この問題について(同じViewで遷移アニメーションを使う), 我々は、より多くの情報をここで見つけました https://qiita.com/dondoko-susumu/items/081282a3545b55c938a7著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .