初学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的主要内容,如果未能解决你的问题,请参考以下文章

初学者 CodeIgniter 概念 - 可重用的视图代码,该去哪里? (帮手?)

译文:18个实用的JavaScript代码片段,助你快速处理日常编程任务

初学scala4——trait混入

初学者的简单vlookup [重复]

56个PHP开发常用代码

如何将片段中的 ListView 对象的数据传递给 Activity?