日本免费高清视频-国产福利视频导航-黄色在线播放国产-天天操天天操天天操天天操|www.shdianci.com

學無先后,達者為師

網站首頁 編程語言 正文

swift實現簡易計算器項目_Swift

作者:luoppusheng ? 更新時間: 2022-04-08 編程語言

本文實例為大家分享了swift實現簡易計算器的具體代碼,供大家參考,具體內容如下

首先在storyboard中搭建出界面

接著上viewcontroller代碼

import UIKit

class ViewController: UIViewController {
? ? @IBOutlet weak var result: UILabel!


? ? var n1: String = ""
? ? var n2: String = ""
? ? var n3: String = ""

? ? override func viewDidLoad() {
? ? ? ? super.viewDidLoad()
? ? ? ? // Do any additional setup after loading the view, typically from a nib.

? ? }


? ? override func didReceiveMemoryWarning() {
? ? ? ? super.didReceiveMemoryWarning()

? ? ? ? // Dispose of any resources that can be recreated.

? ? }


? ? @IBAction func didClick(sender: UIButton) {
? ? ? ? let temp = sender.currentTitle

? ? ? ? if temp == "AC" {
? ? ? ? ? ? n1 = ""
? ? ? ? ? ? n2 = ""

? ? ? ? ? result.text = "0"
? ? ? ? ? ? return

? ? ? ? }

? ? ? ? else if temp == "+" || temp == "-" || temp == "*" || temp == "/" {
? ? ? ? ? n1 = result.text!
? ? ? ? ? n2 = ""
? ? ? ? ? n3 = temp!

? ? ? ? ? return

? ? ? ? }

? ? ? ? else if temp == "=" {
? ? ? ? ? ? var result1: Double = 0
? ? ? ? ? ? ? ?println("n1:"+n1+" n2:"+n2)

? ? ? ? ? ? switch n3 {
? ? ? ? ? ? ?case "+":
? ? ? ? ? ? ? ? result1 = (n1 as NSString).doubleValue + (n2 as NSString).doubleValue ? ? ? ? ?
? ? ? ? ? ? ?case "-":
? ? ? ? ? ? ? ? result1 = (n1 as NSString).doubleValue - (n2 as NSString).doubleValue
?
? ? ? ? ? ? ?case "*":
? ? ? ? ? ? ? ? result1 = (n1 as NSString).doubleValue * (n2 as NSString).doubleValue
? ? ? ? ? ? ?case "/":
? ? ? ? ? ? ? ? result1 = (n1 as NSString).doubleValue / (n2 as NSString).doubleValue
? ? ? ? ? ? ?default:
? ? ? ? ? ? ? ? result1 = 0

? ? ? ? ? ? }

? ? ? ? ? ? result.text = "\(result1)"
? ? ? ? ? ? n3 = ""
? ? ? ? ? ? return? ? ? ? ? ??

? ? ? ? }
? ? ? ??
? ? ? ? if n3 != "" {
? ? ? ? ? n2 = n2 + temp!

? ? ? ? ? result.text = n2

? ? ? ? }else {
? ? ? ? ? n1 = n1 + temp!

? ? ? ? ? result.text = n1


? ? ? ? }


? ? }


}

最后效果圖

原文鏈接:https://blog.csdn.net/woqq786325209/article/details/41687163

欄目分類
最近更新