문제

I'm trying to implement my app's settings. So I implement Preference Pane but I need to insert Toolbar to it. That is how looks my IB: IB And this is how looks my pane from System Preferences: System Preferences You see, my window new height = old height - toolbar height. This is my first time I work with toolbar and prefpane, can you answer is there any restriction to use toolbar iside of prefpane?

도움이 되었습니까?

해결책

The System Preferences application already sets a window toolbar so you cannot have a toolbar in your preferences pane.

I recommend using tabs; look at the NSTabView and NSTabViewItem classes.

Note that NSTabView does not actually require tabs to be displayed (though I recommend making tabs visible to the user). You can configure NSTabView to have no tab frame and still take advantage of it for panel-swapping.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top