この記事は3年以上前に書かれた記事で内容が古い可能性があります
Swift開発事始め
2016-03-27
Swift開発を少し体験してみようと以下gitページを参考に進めてみました
https://github.com/JakeLin/SwiftWeather
お天気情報を表示するシンプルなアプリです。
基本手順通りに進めれば形になりますが、一点躓いた点を記述します。
■$ pod installができない
$ sudo gem install cocoapods $ pod setup
を打ってからやってみましょう。
<参考>
http://www.atmarkit.co.jp/ait/articles/1403/08/news008.html
ーーーーーー
■使えるショートカット
Ctrl Shift →h h (simulatorで)ページ選択
command b デバッグ
command r 実行
■画面が白いまま
nfo.plistファイル内に以下追加
<key>NSAppTransportSecurity</key> <dict> <key>NSAllowsArbitraryLoads</key> <true/> </dict>
■画面が黒いまま
「Is Initial View Controller」にチェック
http://stackoverflow.com/questions/26224171/no-way-to-set-initial-view-controller-in-new-storyboard-in-xcode-6