예시 코드를 먼저 보도록 하겠다. class ViewController: UIViewController { @IBOutlet var uiTitle: UILabel! override func viewDidLoad() { super.viewDidLoad() // Do any additional setup after loading the view. } override func didReceiveMemoryWarning() { super.didReceiveMemoryWarning() } @IBAction func sayHello(_ sender: Any) { self.uiTitle.text = "Hello, World!" } } @IBOutlet은 프로퍼티에, @IBAction은 메소드에 각각 추가된다. 이 A..