facebook twitter hatena line email

「Ios/swift」の版間の差分

提供: 初心者エンジニアの簡易メモ
移動: 案内検索
(storyboardを使わずにHelloworldを表示)
行26: 行26:
 
     override func viewDidLoad() {
 
     override func viewDidLoad() {
 
         super.viewDidLoad()
 
         super.viewDidLoad()
         let label: UILabel = UILabel()
+
         let label1: UILabel = UILabel()
         label.frame = CGRectMake(100.0, 150.0, 200.0, 50.0)
+
         label1.frame = CGRectMake(100.0, 150.0, 200.0, 50.0)
         label.backgroundColor = UIColor.redColor()
+
         label1.backgroundColor = UIColor.yellowColor()
         label.text = "Helloworld"
+
         label1.text = "Helloworld"
         self.view.addSubview(label)
+
        label1.textAlignment = NSTextAlignment.Center
 +
         self.view.addSubview(label1)
 
     }
 
     }
  

2016年6月18日 (土) 00:59時点における版

swift準備

  1. macのapp_storeでxcodeをインストール
  2. create new projectを選択
  3. Single View Applicationを選択
  4. ProductNameをHelloworld、OriginalIdをcom.example、LanguageをSwift、DevicesをiPhoneで作成

コンソールにHelloworld

  1. ViewController.swiftの以下の場所にprintを追加
   override func viewDidLoad() {
       super.viewDidLoad()
       print("Helloworld");
   }
  1. ▶︎を押してビルド実行すると右下のコンソール欄にHelloworldと表示される

参照:http://qiita.com/maximum80/items/4116985b7276fdb45576

画面上にHelloworldのラベルを表示

  1. Main.storyboardを選択し、右下の◎を選択してオブジェクト一覧を選択
  2. Labelを中央にドラッグしてくる。
  3. LabelにHelloworldを記載し
  4. ▶︎を押してビルド実行

参照:http://vdeep.net/start-ios-swift

storyboardを使わずにHelloworldを表示

ViewController.swiftに追加

   override func viewDidLoad() {
       super.viewDidLoad()
       let label1: UILabel = UILabel()
       label1.frame = CGRectMake(100.0, 150.0, 200.0, 50.0)
       label1.backgroundColor = UIColor.yellowColor()
       label1.text = "Helloworld"
       label1.textAlignment = NSTextAlignment.Center
       self.view.addSubview(label1)
   }

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のバージョンの設定

  1. プロジェクトをダブルクリックし、
  2. Deployment Targetを修正

実機検証

  1. 実機をUSBで接続
  2. xcodeの上部にあるiPhone6などと書かれている部分を自分のDeviceに選択しなおす。
  3. ▶︎を押してビルド実行

以下メッセージが出た場合

Verify the Developer App certificate for your account is 
  1. 実機について以下確認
  2. 設定/一般/プロファイルとデバイス管理/デベロッパAPP/信頼するに変更