首先我们需要下载最新的Xcode 6.2 Beta。
启动Xcode,选择Create a new Xcode project, 然后选择Single View Application创建一个单视图应用。
选择菜单中的File -> New -> Target, 然后选择Apple Watch -> Watch App, 点击Next。
在Target的基本属性设置界面中不要勾选Include Notification Scene 和Include Glance Scene这两个选项,因为我们是在做一个Hello World, 最后点击Finish完成Watch App Target的创建。
打开HelloworldWatchKit Watch App目录下的 Interface.storyboard。
然后将一个Label拖拽到InterfaceController中,在Label中输入文字“Hello,World!”,并将Label的Position属性设置为 Horizontal:Center,Vertical:Center,让Label居中。这里不再需要AutoLayout。
首先选择Active Scheme为HelloworldWatchKit Watch App, 然后选择任意型号的iPhone模拟器。
运行应用,这时你可能还看不到Apple Watch模拟器,别着急,这里还需要一个设置。选择iPhone模拟器,在菜单中选择Hardware -> External Displays -> Apple Watch - 38mm | Apple Watch - 42mm。
然后重新运行应用,你就会看到你的第一个Apple Watch App了!
转自:http://www.devtalking.com/articles/helloworld-watchkit-app/