7

我想在 Interface-Builder 中设置一个自定义 NSView,但我不让它适用于 OSX。

在我的 ViewController 的 .xib 中,我添加了一个自定义视图并将 Class 设置为 MyCustomView。我创建了 MyCustomView.h、MyCustomView.m 和 MyCustomView.xib。

在 MyCustomView.xib 中,我也将 Class 设置为 MyCustomView。在 MyCustomView.m 中,被- (void)awakeFromNib调用,但不是。- (id)initWithCoder:(NSCoder *)aDecoder- (id) awakeAfterUsingCoder:(NSCoder*)aDecoder

我想要实现的是,在我的 ViewController 中,我添加的视图被我在 MyCustomView.xib 中设置的视图“填充”。最好的方法是什么?

编辑:我认为我不够清楚......

我的 ViewController 包含一个名为 MyCustomView 的自定义视图。

在此处输入图像描述

此视图应为 MyCustomView 类型,其中

MyCustomView.h MyCustomView.m MyCustomView.xib

存在。我已经将 MyCustomView.xib 的文件所有者设置为 MyCustomView,并且我已经将 ViewController 中的 CustomView 设置为 MyCustomView - 但它不起作用。

如果我这样做

- (void)awakeFromNib {
    NSString* nibName = NSStringFromClass([self class]);
    NSArray* topLevelObjects;
    [[NSBundle mainBundle] loadNibNamed:nibName
                              owner:nil
                    topLevelObjects:&topLevelObjects];

    NSView* view = topLevelObjects[0];
    [view setFrame:[self bounds]];
    [self addSubview:view];
}

我只得到一个 NSView 类型的视图,而不是 MyCustomView...没有简单的方法告诉 ViewController.xib 它是一个 MyCustomView 吗?

编辑 2:我上传了一个简单的项目

https://dl.dropboxusercontent.com/u/119600/Testproject.zip您可以找到一个带有 MyCustomView 的简单项目(不在 ViewController 中,而是在 window.xib 中) - 但它没有显示位于MyCustomView.xib。我想做到这一点-最简单,最好的方法是什么?

4

2 回答 2

18

编辑- 抱歉,我现有的答案没有考虑到连接出口和行动的需要。这种方式应该可以...

鉴于文件...

MyCustomView.h
MyCustomView.m
MyCustomView.xib

在 MyCustomView.h

  • 为您的界面元素声明 IBOutlets。您至少需要一个来保存指向 xib 文件中顶级视图的指针

    @property (nonatomic, strong) IBOutlet NSView *view;

在 MyCustomView.xib

  • 确保只有一个顶级视图
  • 在身份检查器中将文件的所有者类设置为 MyCustomView
  • 确保顶级视图设置为默认NSView类。
  • 现在您可以将 MyCustomView.h 中声明的 IBOutlets 连接到 xib 文件中的接口对象。至少您需要将顶层视图连接到您的view插座。

在 MyCustomView.m 中:

- (id)initWithFrame:(NSRect)frame
{
    NSString* nibName = NSStringFromClass([self class]);
    self = [super initWithFrame:frame];
    if (self) {
        if ([[NSBundle mainBundle] loadNibNamed:nibName 
                                          owner:self 
                                topLevelObjects:nil]) {
            [self.view setFrame:[self bounds]];
            [self addSubview:self.view];
            [self.myCustomButton setTitle:@"test success"];
        }
    }
    return self;
}

在窗口的 xib 文件中,添加自定义 NSView 并将其类更改为 MyCustomView。

在 10.8 之前的 OSX 中,该方法loadNibNamed是类方法 - 如果您需要向后兼容,请改用它,但现在已弃用:

[NSBundle loadNibNamed:@"NibView" owner:self]

请注意,MyCustomView.xib 的视图不是MyCustomView 的视图,而是它的视图的唯一子视图(这类似于 tableViewCell 拥有单个 contentView 的方式)。

在您发布的项目示例中,您需要进行以下更改:

  • 在 MyCustomView.h 中
    。添加一个 NSView 属性

  • 在 MyCustomView.xib 中:
    . 将顶层视图从MyCustomView自定义类更改为NSView(默认)
    。将文件的所有者设置为MyCustomView.
    . 将文件所有者的 IBOutletsview和连接myCustomButton到界面视图和按钮
    。进行测试,使视图更小,并将按钮向上推到右上角(您不会在窗口中看到它,因为它在这里)

  • 在 MyCustomView.m 中:
    initWithFrame用这里的方法替换所有实现代码

于 2013-08-23T19:49:08.437 回答
0

为了加载视图或控件的自定义子类(或任何其他可在 Interface Builder 中使用的类),您需要添加基本版本(在您的情况下为 NSView,就像您所做的那样),然后在窗口中选择该对象并转到 Identity Inspector (Cmd-Opt 3)。

而不是类的预定义值(在您的情况下为 NSView),输入您的自定义子类的名称。瞧!

与 IB UX 相关的一个小细节是,您可能必须将焦点从输入字段移开,以便在构建和运行应用程序时注册该更改。

于 2013-08-23T23:27:24.287 回答