码迷,mamicode.com
首页 > 编程语言 > 详细

用swift开发计算器

时间:2015-03-01 18:37:26      阅读:180      评论:0      收藏:0      [点我收藏+]

标签:

import UIKit

class ViewController: UIViewController {

    @IBOutlet weak var display: UILabel!
    
    var userIsInputingDigit :Bool  = false
    @IBAction func appendDigit(sender: UIButton) {
        let digit =  sender.currentTitle!
         if userIsInputingDigit {
        display.text = display.text! + digit
            
        }else {
        
        display.text = digit
        userIsInputingDigit = true
        }
        
    }
    
    override func viewDidLoad() {
        super.viewDidLoad()
        // Do any additional setup after loading the view, typically from a nib.
    }

    

}

来自: https://itunes.apple.com/us/course/developing-ios-8-apps-swift/id961180099

用swift开发计算器

标签:

原文地址:http://my.oschina.net/itfanr/blog/381043

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!