Cocoa:用nib加载NSViewController

时间:2012-09-15 12:26:14

标签: cocoa xcode4 nib osx-mountain-lion nsviewcontroller

我已尝试过在本网站上找到的许多可能性,并阅读了一些解释 来自苹果开发者页面,但似乎我无法解决我的问题 使用/ form NIB加载NSViewController。

Xcode Project上的文件看起来有点像这样:

  • SecondViewController.h
  • SecondViewController.m
  • SecondViewController.xib
  • AppDelegate.h
  • AppDelegate.m
  • MainMenu.xib

主要问题是如何以编程方式创建SecondViewController SecondViewController.xib上的初始nib

  
      
  • MainMenu.xib上的FileOwner自定义类是NSApplication
  •   
  • SecondViewController.xib上的FileOwner自定义类是SecondViewController
  •   
  • MainMenu.xb中有一些面板和窗口(关于窗口和首选项面板)
  •   
  • 此应用程序没有主窗口(使用状态栏上的通知图标)
  •   

SecondViewController.h

@interface SecondViewController : NSViewController {
    BOOL fullScreenMode;
    NSImageView *fullScreenbg;
    NSImageView *imageView1;
    NSImageView *imageView2;
    NSPanel *imageWindow;

}


@property (assign) IBOutlet NSImageView *fullScreenbg;
@property (assign) IBOutlet NSImageView *imageView1;
@property (assign) IBOutlet NSImageView *imageView2;
@property (assign) IBOutlet NSPanel *imageWindow;

SecondViewController.m

@implementation SecondViewController {
    NSImageView *nv1;
    NSImageView *nv2;
    NSSize curImgSize;
}

@synthesize fullScreenbg;
@synthesize imageView1;
@synthesize imageView2;
@synthesize imageWindow;

......

- (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil
{
    self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil];
    if (self) {
        // Initialization code here.
        fullScreenMode = YES;
    }

    return self;
}

AppDelegate.h

@interface AppDelegate : NSObject <NSApplicationDelegate,NSWindowDelegate> {
   NSPanel *aboutWindow;
   IBOutlet NSMenu *myStatusMenu;
   IBOutlet NSMenuItem *toggleFullScreen;
}

AppDelegate.m

@implementation AppDelegate {
    SecondViewController *controller;
}

- (void)applicationDidFinishLaunching:(NSNotification *)aNotification {
    controller = [[SecondViewController alloc] 
                 initWithNibName:@"SecondViewController" 
                 bundle:nil];  
    //Not work (fullscreenbg, imageView1, imageView2,imageWindow = nil)

    //controller = [[SecondViewController alloc] init]; ?? <-- didn't work either
}

即使使用initWithNibName或只是init,所有IBOutlet属性似乎都是零 在调试。

我尝试了其他解决方案,例如“NSBundle loadNibNamed”或using loadView,但它不起作用(警告消息:“NSObject我没有响应loadView”)。

secondViewController的主要用途是显示包含的通知消息 图形和网络元素。

我希望有人能给我一个最好的建议。感谢。

2 个答案:

答案 0 :(得分:0)

这是正常行为。 IBOutlets未在构造函数中连接。

您可以覆盖viewDidLoad,调用super,然后进行任何初始化。

答案 1 :(得分:-1)

- (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil
{
    //added this line :
    if (nibBundleOrNil!=nil || ![nibBundleOrNil isEqualtoString:@""]) {
        [NSBundle loadNibNamed:@"SecondViewController" owner:self];
    {

    self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil];
    if (self) {
        // Initialization code here.
        fullScreenMode = YES;
    }

    return self;
}