◼︎変更可能なプロバティの値 UIImageViewをアニメーションさせる時に、変化させることができるプロパティは以下の6種類です。 プロパティ 意味 frame 座標とサイズ bounds 座標とサイズ center 中心座標 transform 移動、拡大縮小、回転 backgroundcolor 背景色 contentStretch ストレッチ方法 alpha 透明度 ◼︎アニメーションの開始 // 任意ののオプション UIViewAnimationOptions myOption = UIViewAnimationOptionCurveLinear //等速 | UIViewAnimationOptionRepeat ; //繰り返し [UIView animateWithDuration:1.0 // アニメーションの秒数 delay:1.0 // 開始までの秒数 options