iOS開発初心者です。次のコードを使用しています。
AskViewController *askController=[[AskViewController alloc]initWithNibName:@"AskViewController" bundle:nil];
askController.view.transform = CGAffineTransformMakeScale(0.01, 0.01);
[UIView beginAnimations:@"animationExpand" context:NULL];
[UIView setAnimationDuration:0.5f];
[UIView setAnimationCurve:UIViewAnimationOptionOverrideInheritedDuration];
askController.view.transform=CGAffineTransformMakeScale(1, 1);
[UIView setAnimationDelegate:self];
[UIView commitAnimations];
[self.navigationController pushViewController:askController animated:NO];
askViewcontroller をナビゲーションにプッシュすると、黒い画面のアニメーションで AskViewcontroller が表示されます。その黒い画面を白または他の色の画面に変更したい。
どんな助けでも大歓迎です。