赞
踩
这篇主要想建立一个小App,可以按对应button来更换显示的文字~
上面的Hello World是Label,剩下两个是Button
按住control,选中UI界面上的button,向右侧代码的class中拖拽,会弹出小界面如下,选择Action, UIButton然后给这个method起个名字~然后connect
选择另一个Button, 按住control,拖拽到刚刚建立的function里面(注意!两个Button功用这个method)
按control,将label拖拽到class里(method外面哦)然后起个名字~这次是Outlet
完善method function,完成代码如下
import UIKit
class ViewController: UIViewController {
@IBOutlet weak var textView: UILabel!
@IBAction func buttonOnClick(sender: UIButton) {
//sender is the object that called this method (i.e.button)
let title = sender.titleForState(.Normal)!
textView.text = "You clicked the \(title) button"
}
}
注意在Swift中var会定义新的可变variable, let则相当于const var, 定义不变量。这里不希望Button上面的字会变,所以把title定义成了constant
点击Hug如下:
文字转换实现^_^iOS开发好人性化!
今日DONE~
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。