Upgrade to Pro — share decks privately, control downloads, hide ads and more …

ストーリーボードで電卓アプリを作る

Chino
May 09, 2018

 ストーリーボードで電卓アプリを作る

Chino

May 09, 2018
Tweet

More Decks by Chino

Other Decks in Technology

Transcript

  1. ϓϩδΣΫτΛอଘͨ͠ϑΥϧμʹɺ1PEpMFΛ࡞੒ $ cd /path/to/XcodeProject/CalculatorApp $ pod init 1PEpMFΛฤू platform :ios,

    '9.0' target 'CalculatorApp' do use_frameworks! pod 'Expression' end ϥΠϒϥϦΛΠϯετʔϧ $ pod init
  2. Ϙλϯ͕ԡ͞ΕͨΒࣜͷจࣈྻΛදࣔɾߋ৽ 7JFX$POUSPMMFSTXJGUΛ։͍ͯɺWJFX%JE-PBEϝιουٴͼ JOQVU'PSNVMBϝιουΛฤू͢Δ override func viewDidLoad() { super.viewDidLoad() // Ϗϡʔ͕ϩʔυ͞Εͨ࣌఺Ͱࣜͱ౴͑ͷϥϕϧ͸ۭʹ͢Δ

    formulaLabel.text = "" answerLabel.text = "" } @IBAction func inputFormula(_ sender: UIButton) { // ϘλϯʢCͱ=Ҏ֎ʣ͕ԡ͞ΕͨΒࣜΛදࣔ͢Δ guard let formulaText = formulaLabel.text else { return } guard let senderedText = sender.titleLabel?.text else { return } formulaLabel.text = formulaText + senderedText }