Ios空白屏幕

时间:2011-04-07 13:47:27

标签: ios view

所以我正在做一个简单的app.I必须nib文件。我更改首先从viewController加载到firstController的nib,但它只是一个空白的屏幕。这是我的代码:

MyAppDelegate.h

#import <UIKit/UIKit.h>

@class IpadAppViewController,FirstPageViewController;

@interface IpadAppAppDelegate : NSObject <UIApplicationDelegate> {
    UIWindow *window;
    IpadAppViewController *viewController;
    IBOutlet FirstPageViewController *firstController;
}

@property (nonatomic, retain) IBOutlet UIWindow *window;
@property (nonatomic, retain) IBOutlet IpadAppViewController *viewController;
@property (nonatomic, retain) IBOutlet FirstPageViewController *firstController;

@end

MyAppDelegate.m

//
//  IpadAppAppDelegate.m
//  IpadApp
//
//  Created by Stefan Andrei on 3/24/11.
//  Copyright 2011 IMC. All rights reserved.
//

#import "IpadAppAppDelegate.h"
#import "IpadAppViewController.h"
#import "FirstPageViewController.h"

@implementation IpadAppAppDelegate

@synthesize window;
@synthesize viewController;
@synthesize firstController;


#pragma mark -
#pragma mark Application lifecycle

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {    

    // Override point for customization after app launch. 
    [self.window addSubview:firstController.view];
    [self.window makeKeyAndVisible];
    return YES;
}


- (void)applicationWillResignActive:(UIApplication *)application {
    /*
     Sent when the application is about to move from active to inactive state. This can occur for certain types of temporary interruptions (such as an incoming phone call or SMS message) or when the user quits the application and it begins the transition to the background state.
     Use this method to pause ongoing tasks, disable timers, and throttle down OpenGL ES frame rates. Games should use this method to pause the game.
     */
}


- (void)applicationDidBecomeActive:(UIApplication *)application {
    /*
     Restart any tasks that were paused (or not yet started) while the application was inactive. If the application was previously in the background, optionally refresh the user interface.
     */
}


- (void)applicationWillTerminate:(UIApplication *)application {
    /*
     Called when the application is about to terminate.
     See also applicationDidEnterBackground:.
     */
}


#pragma mark -
#pragma mark Memory management

- (void)applicationDidReceiveMemoryWarning:(UIApplication *)application {
    /*
     Free up as much memory as possible by purging cached data objects that can be recreated (or reloaded from disk) later.
     */
}


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


@end

1 个答案:

答案 0 :(得分:1)

在做[self.window addSubview:firstController.view]之前,你应该做

self.firstController = [[[FirstPageViewController alloc] initWithNibName:nil bundle:nil] autorelease];

如果您与.xib一起创建了FirstPageViewController,那么这应该就足够了,否则您可能需要在initWithNibName中传递nib的名称(不带.xib部分):

编辑:添加了autorelease - firstController属性已经保留。

相关问题