用swift开发计算器

前端之家收集整理的这篇文章主要介绍了用swift开发计算器前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
importUIKit

classViewController:UIViewController{

@IBOutletweakvardisplay:UILabel!

varuserIsInputingDigit:Bool=false
@IBActionfuncappendDigit(sender:UIButton){
letdigit=sender.currentTitle!
ifuserIsInputingDigit{
display.text=display.text!+digit

}else{

display.text=digit
userIsInputingDigit=true
}

}

overridefuncviewDidLoad(){
super.viewDidLoad()
//Doanyadditionalsetupafterloadingtheview,typicallyfromanib.
}



}

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

猜你在找的Swift相关文章