iphoneアプリでaddsubviewする時にフェードインアニメーションっぽくする方法。 [myView setAlpha:0.0]; myView.backgroundColor = [[UIColor alloc] initWithRed: 0.0 green: 0.0 blue: 0.0 alpha: 0.0]; // アニメーション処理 [UIView beginAnimations:nil context:NULL]; // 0.75秒で [UIView setAnimationDuration:0.75]; [myView setAlpha:1]; myView.backgroundColor = [[UIColor alloc] initWithRed: 0.0 green: 0.0 blue: 0.0 alpha: 0.8]; [self.view addSubview: