Simple ViewController / View, remove white bar?

Posted by fuzzygoat on Stack Overflow See other posts from Stack Overflow or by fuzzygoat
Published on 2010-06-02T11:42:06Z Indexed on 2010/06/02 11:43 UTC
Read the original article Hit count: 251

Filed under:
|
|

I am just looking at setting up a simple viewController programatically, I have a ViewController.xib file that I have set the background color to RED in interface builder. I have also added the following to my AppDelegate.m

@implementation syntax_MapViewAppDelegate
@synthesize window;

-(BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {    
    viewController = [[MapViewController alloc] init];
    [window addSubview:[viewController view]];
    [window makeKeyAndVisible];
    return YES;
}

-(void)dealloc {
    [viewController release];
    [window release];
    [super dealloc];
}
@end

When I run the code it does what I expect apart from the white bar at the bottom of the screen, can anyone give me any pointers in how to remove this? I have a feeling I might need to position the view within the window, but I am not sure how?

alt text

cheers Gary

© Stack Overflow or respective owner

Related posts about iphone

Related posts about objective-c