Trigger button to change text in UITextView in swift3 xcode 8 ios 10
问题 I'm new to xcode and am stuck on this problem, because after trying several sample code examples online, nothing works. Could you help me figure out what the problem is? My code below: import UIKit class ViewController: UIViewController { @IBOutlet weak var Writingboard: UITextView! @IBOutlet weak var Talkbutton: UIButton! @IBAction func TalkbuttonTapped(_ sender: AnyObject){ Talkbutton.setTitle("Tap to Stop", for: .normal) Writingboard.text="talking" } override func viewDidLoad() { super