UIView *view = [[ UIView alloc ] initWithFrame : CGRectMake (100.0f, 100.0f, 120.0f, 120.0f)]; view. backgroundColor = [ UIColor redColor ]; // 初期表示は赤色 [ self . view addSubview :view]; // 2 秒間キーフレームアニメーションを実行する(逆再生&リピート) [ UIView animateKeyframesWithDuration :2.0 delay :0.0 options : UIViewKeyframeAnimationOptionAutoreverse | UIViewKeyframeAnimationOptionRepeat animations :^{ // 0.8 秒間( 2.0 * 0.4 )かけて背景を黄色に ...