UINavigationController-与桌面-Cocoa 类似吗?
我目前正在开发一个应用程序,其用户界面非常类似于 Mac 版 Twitter(像 iOS 上一样推入/推出视图)。
有人为桌面 Cocoa 实现了 UIViewController 吗?这会节省我很多时间。
I'm currently developing an application with an user interface much like Twitter for Mac (Pushing in/out of views like on iOS).
Has anyone implemented a UIViewController for desktop Cocoa? This would save me many hours of work.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
目前标准 AppKit 中还没有这个。你必须自己写。
如果您决定走这条路,这可能会有所帮助: http://parsekit.com/umekit/
UMEKit是 Cocoa 的一个小框架,它实现了 UIKit 类和 UI 组件的一些等效项。
There isn't one in standard AppKit at this time. You'll have to write your own.
This may help if you decide to go down that path: http://parsekit.com/umekit/
UMEKit is a little framework for Cocoa that implements some equivalents to UIKit classes and UI components.
我花了很长时间寻找这个并开始编写自己的,然后找到 https://github.com/bfolder/BFNavigationController< /a>
由于某种原因 Google 并不知道这一点。
I spent ages looking for this and started to write my own, then found https://github.com/bfolder/BFNavigationController
For some reason Google doesn't know about it.
这是我们如何在没有导航栏的情况下实现
NavigationController
的。使用导航项之间的转换来实现导航栏,类似于下面示例中视图之间的转换方式。可重复使用的扩展:
Here how we did
NavigationController
, without navigation bar. Implementing navigation bar with transitions between navigation items similar to how transition between views made in example below.Reusable extensions: