初学iOS-HelloWorld

Posted 全世界每一处都是你

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了初学iOS-HelloWorld相关的知识,希望对你有一定的参考价值。

看图


下面附上代码import UIKit

class ViewController: UIViewController {

@IBOutlet weak var display: UITextField!

@IBAction func xianshi(_ sender: UIButton) {
    display.text="HelloWorld"
}

@IBAction func qingkong(_ sender: UIButton) {
    display.text=" "
}

}
最后看模拟器效果图

以上是关于初学iOS-HelloWorld的主要内容,如果未能解决你的问题,请参考以下文章