i'm new to iOS Development. currently just want to produce Hello World
Message.
However, after write update ViewController.swift
code, i can't not drag or click any item on Controller Inspector's item
Below are Updated code of ViewController.swift
:
@IBAction func showMessage(sender: UIButton) {
let alert = UIAlertView(title: "My Hello Wolrd App", message: "Hello, World!", delegate: nil, cancelButtonTitle: "OK")
alert.show()
}
Belo are screenshot of Connections Inspectors :
any idea to solve this ?
thanks in advance