let opt = UIViewAnimationOptions.Autoreverse | UIViewAnimationOptions.CurveEaseIn
UIView.animateWithDuration(duration: 3.0, delay: 0, options: opt, animations: 以下略)
でもSwift 2.0から仕様が変わりやがりまして、[ ]内に , 区切りで並べるようになった。
let option: UIViewAnimationOptions = [UIViewAnimationOptions.Autoreverse, UIViewAnimationOptions.CurveEaseIn]
Binary operator '|' cannot be applied to two 'UIViewAnimationOptions' operands
というエラーが出てしまうので注意だ。
いろいろ変わって面倒くさいね。
0 件のコメント:
コメントを投稿