我想知道如何使用INAppStoreWindow在标题栏中添加工具栏。我成功在应用程序中添加了InAppStoreWindow,但我正在考虑如何使用INAppStoreWindow在标题栏的中心添加类似“ AppStore.app”的工具栏。

在Internet上,stackoverflow在INAppStoreWindow方法中都没有关于此工具栏的类似主题。我希望有人能告诉我这是否可行,以及如何找不到示例。

最佳答案

如果您使用窗口标题栏上要显示的内容创建一个NSView,并且对窗口和该视图都具有IBOutlet,则可以用两行代码完成。

(在这种情况下,视图为titleView,窗口为theWindow

//Make the titlebar view the same size
[self.titleView setFrameSize:self.theWindow.titleBarView.frame.size];

//Add the view to the window's "titleBarView"
[self.theWindow.titleBarView addSubview:self.titleView];

10-08 05:25