您好,登录后才能下订单哦!
import UIKit
class ViewController: UIViewController {
@IBOutlet weak var textOne: UITextField!
@IBOutlet weak var textTwo: UITextField!
@IBOutlet weak var textResult: UILabel!
@IBAction func calculate() {
var num1 = self.textOne.text.toInt()//从UITextField读取int
var num2 = self.textTwo.text.toInt()
if (self.textOne.text.isEmpty){
num1 = 0
}
if (!self.textTwo.hasText()){
num2 = 0
}
var resultNum = num1! + num2!//加!号?
//两种从int转string的方法
var resultString = String.convertFromStringInterpolationSegment(resultNum)
var resultString2 = "\(resultNum)"
self.textResult.text = resultString2 //UILabel赋值
self.textOne.endEditing(true)
self.textTwo.endEditing(true)
}
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.
}
}
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。