我正在尝试向 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];
提前谢谢了