如何单击segmentedControl对象并使用它来更改视图?
我想实现像界面生成器分段控件一样,然后单击它来更改视图,我不知道分段下是否有NSBrowser。以及如何更改视图,你能给我一些示例代码或演示吗?非常感谢!
I want to implement just like interface builder segmented control, and click it to change views , I don't know under the segment if a NSBrowser or not. and how to change the view , can you give me some sample codes or a demo? Thank you very much!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用
NSSegmentedControl
作为分段控件,并使用 tablesNSTabView
在视图之间切换。如果它在您的应用程序中有意义,您甚至可以将两者绑定到相同的用户默认值并实现此功能,而无需编写任何代码。Use
NSSegmentedControl
for the segmented control, and a tablessNSTabView
to switch between views. If it makes sense in your app, you could even bind both to the same user default and implement this without writing a single line of code.分段控件是 NSSegmentedControl。
A segmented control is an NSSegmentedControl.