Mac 应用程序的设计视图
有没有办法像为 iPhone/iPad 应用程序商店创建应用程序一样为 Mac 应用程序商店创建应用程序?使用 Interface Builder 或一些类似的程序来创建将使用 IBOutlets 和 IBActions 连接到代码的视图?
如果没有,任何人都可以概述创建 Mac 应用程序(而不是 iOS 应用程序)所需的内容,并可能指出一个好的教程、示例源代码或文档资源吗?
感谢您的帮助!
Is there any way to create an app for the Mac App Store in much the same way as you do for the iPhone/iPad app store? Using Interface Builder or some similar program for creating views that will connect to the code with IBOutlets and IBActions?
If not, can anybody outline what is needed to create Mac Apps as opposed to iOS apps and perhaps point to a good tutorial, sample source code, or documentation resource?
Thanks for your help!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
Mac OS 和 iOS 的技术大致相同。您使用 Xcode 和 Interface Builder。 iOS 使用 CocoaTouch,而 Mac OS X 使用 Cocoa(CocoaTouch 源自 Cocoa)。
The technology is much the same for both Mac OS and iOS. You use Xcode and Interface Builder. iOS uses CocoaTouch whereas Mac OS X uses Cocoa (from which CocoaTouch was derived).
基本上是一样的,但是你使用 NSViewControllers 代替 UIViewControllers。 NSView 与 UIView 略有不同,但子视图机制是相同的。
It's basically the same, but instead of UIViewControllers you use NSViewControllers. NSView is slightly different from UIView but the subview-mechanism is identical.