回答編集履歴

1

ビルドコマンド明記

2015/12/15 11:40

投稿

退会済みユーザー
test CHANGED
@@ -3,3 +3,13 @@
3
3
 
4
4
 
5
5
  - [Display window on OSX using Swift without XCode or NIB - Stack Overflow](http://stackoverflow.com/a/33456649/4506703)
6
+
7
+
8
+
9
+ コメントにある通り、原文のビルドコマンドはちょっとミスってて、正しくは以下ですね:
10
+
11
+ ```
12
+
13
+ swiftc -sdk /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk TestView.swift TestApplicationController.swift main.swift
14
+
15
+ ```