为INAppStoreWindow添加工具栏



我正在尝试为INAppStoreWindow添加工具栏。

它有这样的属性:

/** The title bar view itself. Add subviews to this view that you want to show in
 the title bar (e.g. buttons, a toolbar, etc.). This view can also be set if 
you want to use a different styled title bar aside from the default one 
(textured, etc.). **/
@property (nonatomic, retain) NSView *titleBarView;

我有一个工具栏创建,并链接到一个出口在我的代码,但我怎么能添加它作为一个子视图,如果它有一个类的NSToolbar,当它需要一个NSView?

抛出异常:[aWindow.titleBarView addSubview:toolbar];

提前致谢

INAppStoreWindow在窗口的小部件和内容视图之间回避titleBarView:

INAppStoreWindow.m:

- (void)setTitleBarView:(NSView *)newTitleBarView
{
if ((_titleBarView != newTitleBarView) && newTitleBarView)  {
    [_titleBarView removeFromSuperview];
    [_titleBarView release];
    _titleBarView = [newTitleBarView retain];
    // Configure the view properties and add it as a subview of the theme frame
    NSView *contentView = [self contentView];
    NSView *themeFrame = [contentView superview];
    NSView *firstSubview = [[themeFrame subviews] objectAtIndex:0];
    [_titleBarView setAutoresizingMask:(NSViewMinYMargin | NSViewWidthSizable)];
    [self _recalculateFrameForTitleBarView];
    [themeFrame addSubview:_titleBarView positioned:NSWindowBelow relativeTo:firstSubview];
    [self _layoutTrafficLightsAndContent];
    [self display];
    }
}

NSToolbar不是NSView子类,它意味着与窗口本身一起工作,这是由titleBarView遮挡的。为了好玩,在INAppStoreWindow.m中设置渐变颜色的alpha值并运行应用程序;你会看到"真正的"窗口还在下面。

如果您设置使用INAppStoreWindow,您最好的选择可能是使用您自己的自定义视图和按钮来创建工具栏,并将其添加为titleBarView的子视图。当然,在这种情况下,你必须自己做所有的布局。

相关内容

  • 没有找到相关文章

最新更新