如何在swift中打印到文本字段?

时间:2018-04-05 01:34:42

标签: ios swift uitextfield

我正在尝试编写一个按钮来打印单个字符' ^'到标记为propA的文本字段。有谁知道这样做的方法或如何创建一个?

import UIKit

class ViewController: UIViewController {
    @IBOutlet var propA: [UITextField]!

    @IBAction func orButton(_ sender: UIButton, forEvent event: UIEvent) {
        print("or") //test
        //print to text field propA
    }
}

1 个答案:

答案 0 :(得分:0)

首先,像这样更改@IBOutlet

@IBOutlet weak var propA: UITextField!

要将文本设置为文本字段,请使用:

@IBAction func orButton(_ sender: UIButton, forEvent event: UIEvent) {
    propA.text = "or"
}