25

我很难集中精力使用 Interface Builder 和 NSViewController 加载视图。

我的目标是拥有一个满足以下描述的视图:顶部的顶部栏(像工具栏但不完全一样)跨越视图的整个宽度,以及下面的第二个“内容视图”。这个复合视图归我的NSViewController子类所有。

为此使用 Interface Builder 是有意义的。我创建了一个视图笔尖,并向其中添加了两个子视图,将它们正确布局(使用顶部栏和内容视图)。我已经设置File's Owner好了MyViewController,并连接了插座等。

我希望加载的视图(栏和内容)也在它们自己的笔尖中(这可能是让我绊倒的原因),并且这些笔尖将它们的自定义类设置为相应的 NSView 子类(如果适用)。我不确定要设置什么File's Owner(我猜MyController应该是他们的所有者)。

唉,当我初始化一个MyViewController我的笔尖都没有实际显示的实例时。我已经将它正确地添加到我的窗口的 contentView 中(我已经检查过),实际上,事情有点加载。也就是说,awakeFromNib被发送到条形视图,但它不会显示在窗口中。我想我肯定有一些电线交叉在某个地方。也许有人可以伸出援助之手来减轻我的一些挫败感?

编辑一些代码以显示我在做什么

当我的应用程序完成启动时,从应用程序委托加载控制器:

MyController *controller = [[MyController alloc] initWithNibName:@"MyController" bundle:nil];
[window setContentView:[controller view]];

然后在我的 initWithNibName 中,我现在什么也不做,只是打电话给 super 。

4

2 回答 2

71

将每个视图分解为自己的 nib 并使用NSViewController时,处理事情的典型方法是NSViewController为每个 nib 创建一个子类。然后将每个相应 nib 文件的 File's Owner 设置为该NSViewController子类,并且您可以将view插座连接到 nib 中的自定义视图。然后,在控制主窗口内容视图的视图控制器中,实例化每个NSViewController子类的实例,然后将该控制器的视图添加到您的窗口。

一小段代码——在这段代码中,我调用主内容视图控制器MainViewController,“工具栏”的控制器是TopViewController,其余内容是ContentViewController

//MainViewController.h
@interface MainViewController : NSViewController
{
    //These would just be custom views included in the main nib file that serve
    //as placeholders for where to insert the views coming from other nibs
    IBOutlet NSView* topView;
    IBOutlet NSView* contentView;
    TopViewController* topViewController;
    ContentViewController* contentViewController;
}

@end

//MainViewController.m
@implementation MainViewController

//loadView is declared in NSViewController, but awakeFromNib would work also
//this is preferred to doing things in initWithNibName:bundle: because
//views are loaded lazily, so you don't need to go loading the other nibs
//until your own nib has actually been loaded.
- (void)loadView
{
    [super loadView];
    topViewController = [[TopViewController alloc] initWithNibName:@"TopView" bundle:nil];
    [[topViewController view] setFrame:[topView frame]];
    [[self view] replaceSubview:topView with:[topViewController view]];
    contentViewController = [[ContentViewController alloc] initWithNibName:@"ContentView" bundle:nil];
    [[contentViewController view] setFrame:[contentView frame]];
    [[self view] replaceSubview:contentView with:[contentViewController view]];
}

@end
于 2009-11-13T01:29:31.833 回答
2

MainViewController 不应该是 NSWindowController 的子类吗?并且类中的插座连接到 MainMenu.xib 中主窗口中的视图元素?让我们希望旧线程仍然被阅读......

于 2010-07-22T14:55:53.003 回答