创建iPhone应用程序与Mac OS应用程式

创建iPhone应用程序与Mac OS应用程式

问题描述:

我是iPhone / iPad应用程序开发人员。现在我也想创建Mac应用程序。
我想知道我应该如何开始学习Mac App开发。
我首先在apple docs中创建了Currency Converter应用程序。但这很简单。
我想探索Mac应用程序的不同控件。
请指导。

I am an iphone/ipad apps developer.Now I also want to create mac apps. I wanted to know that how should I start learning mac app development. I started by creating the Currency converter app in the apple docs.But that is quite simple. I wanted to explore about the different controls for mac app. Please guide.

您的很多Obj-C / Cocoa基本知识(与Foundation.framework相关的知识)将直接翻译。 UI的主要区别是UIKit与AppKit。整个控制器层架构也有一些差异(特定于视图控制器的东西)。

Much of your basic Obj-C/Cocoa knowledge (Foundation.framework-related stuff) will directly translate. The primary difference is UIKit vs. AppKit for the UI. The overall controller-layer architecture also has some differences (view-controller specific stuff).

要探索控件,请打开Interface Builder,创建一个普通的Cocoa Application xib并开始通过将控件拖动到窗口中来探索控件。使用API​​参考作为指南。

To explore the controls, open Interface Builder, create a plain Cocoa Application xib and start exploring the controls by dragging them into a window. Use the API reference as your guide.

快乐编码。