I have a Default.png for my splash screen image at my iphone app. After the initialization of my app is finished i add a subview with the Default.png in order to create a fade out transition. It works but when the switch occurs between the Default.png and the uiimageview Default.png on the view, the uiimageview show up slightly down in comparison with the Default.png which is the splash screen image. I want the uiimageview to show up at the same place as the Default.png splash screen image. This is the code i use...
Any help appreciated...
newview=[[UIView alloc] initWithFrame:CGRectMake(0, 0, 320, 480)];
splashView = [[UIImageView alloc] initWithFrame:CGRectMake(0, 0, 320, 480)];
splashView.image = [UIImage imageNamed:@"Default.png"];
[newview addSubview:splashView];