「Ios/swift」の版間の差分
提供: 初心者エンジニアの簡易メモ
行11: | 行11: | ||
print("Helloworld"); | print("Helloworld"); | ||
} | } | ||
− | # | + | #▶︎を押してビルド実行すると右下のコンソール欄にHelloworldと表示される |
参照:http://qiita.com/maximum80/items/4116985b7276fdb45576 | 参照:http://qiita.com/maximum80/items/4116985b7276fdb45576 | ||
行19: | 行19: | ||
#Labelを中央にドラッグしてくる。 | #Labelを中央にドラッグしてくる。 | ||
#LabelにHelloworldを記載し | #LabelにHelloworldを記載し | ||
− | # | + | #▶︎を押してビルド実行 |
参照:http://vdeep.net/start-ios-swift | 参照:http://vdeep.net/start-ios-swift | ||
行29: | 行29: | ||
#プロジェクトをダブルクリックし、 | #プロジェクトをダブルクリックし、 | ||
#Deployment Targetを修正 | #Deployment Targetを修正 | ||
+ | |||
+ | ==実機検証== | ||
+ | #実機をUSBで接続 | ||
+ | #xcodeの上部にあるiPhone6などと書かれている部分を自分のDeviceに選択しなおす。 | ||
+ | #▶︎を押してビルド実行 | ||
+ | |||
+ | 以下メッセージが出た場合 | ||
+ | Verify the Developer App certificate for your account is | ||
+ | |||
+ | #実機について以下確認 | ||
+ | #設定/一般/プロファイルとデバイス管理/デベロッパAPP/信頼するに変更 |
2016年6月18日 (土) 00:22時点における版
目次
swift準備
- macのapp_storeでxcodeをインストール
- create new projectを選択
- Single View Applicationを選択
- ProductNameをHelloworld、OriginalIdをcom.example、LanguageをSwift、DevicesをiPhoneで作成
コンソールにHelloworld
- ViewController.swiftの以下の場所にprintを追加
override func viewDidLoad() { super.viewDidLoad() print("Helloworld"); }
- ▶︎を押してビルド実行すると右下のコンソール欄にHelloworldと表示される
参照:http://qiita.com/maximum80/items/4116985b7276fdb45576
画面上にHelloworldのラベルを表示
- Main.storyboradを選択し、右下の◎を選択してオブジェクト一覧を選択
- Labelを中央にドラッグしてくる。
- LabelにHelloworldを記載し
- ▶︎を押してビルド実行
参照:http://vdeep.net/start-ios-swift
swiftバージョン確認
$ /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift -v Apple Swift version 2.2 (swiftlang-703.0.18.8 clang-703.0.31)
最低限必要となるiOSのバージョンの設定
- プロジェクトをダブルクリックし、
- Deployment Targetを修正
実機検証
- 実機をUSBで接続
- xcodeの上部にあるiPhone6などと書かれている部分を自分のDeviceに選択しなおす。
- ▶︎を押してビルド実行
以下メッセージが出た場合
Verify the Developer App certificate for your account is
- 実機について以下確認
- 設定/一般/プロファイルとデバイス管理/デベロッパAPP/信頼するに変更