2011-04-07 4 views
1

Так что я делаю простое приложение. Мне нужно использовать файлы nib. Я меняю наконечник, который загружает сначала из viewController в firstController, но только ботинку пустого экрана. Вот мой код:Ios blank screen

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 
+0

Как вы инициализируете firstController? – SVD

+0

Я этого не делал. Как я могу это сделать и где? – flaviusilaghi

ответ

1

Перед выполнением [self.window addSubview: firstController.view], вы должны сделать

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

Если вы создали FirstPageViewController вместе с .xib, тогда этого должно быть достаточно, иначе вы y необходимо передать имя ниба (без части .xib) в initWithNibName:

Редактировать: добавлена ​​автореферация - свойство firstController уже сохраняется.

+0

это работает, спасибо – flaviusilaghi