21 Apr 2011, 00:54
Generic-user-small

Justin Rhoades (1 post)

It seems when you present the SplashScreen via the presentModalViewController method, a white background is always added to the modal. In my case, my default.png is black and my first view is black. When the SplashScreen fades out, the white background of the modal turns everything gray, not good. Is there a way to set the underlying background color of the modal?

21 Apr 2011, 18:15
Generic-user-small

Matt Drance (54 posts)

Sure. Set the background color :-) In -[PRPSplashScreen loadView], after creating the image view:

iv.backgroundColor = [UIColor blackColor];
  You must be logged in to comment