Mac OS X - 如何在 Mac OS 中制作类似于 iPhone 中的页面控件?
如何制作一个类似于 iPhone 上的页面控件,但适用于 Mac 操作系统?
具有多个视图并允许您通过按“下一步”和“后退”在它们之间切换的东西。
谢谢!
How can you make a page control similar to the one found on the iPhone, but for the Mac OS?
Something that has a couple of views and allows you to switch between them by pressing on "Next" and "Back".
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
最简单的方法:创建一个 NSTabView,并将选项卡设置为隐藏。然后您可以对其调用
selectNextTabViewItem:
或selectPreviousTabViewItem:
(将您的下一个和后退按钮连接到这些方法)。Easiest way: create an NSTabView, and set the tabs to hidden. Then you can call
selectNextTabViewItem:
orselectPreviousTabViewItem:
on it (wire your next and back buttons up to these methods).