iOS

[iOS] Change button title - Swift

setTitle

Posted by dongjune on December 9, 2020

setTitle 명령어를 통해 UIButton의 title을 바꿀 수 있습니다.

1
button.setTitle("Change a title",for:.normal)

다음 코드는 앱이 로드 됐을 때 (viewDidLoad) UIButton의 title을 바꾸는 코드입니다.

1
2
3
4
5
6
7
8
9
10
11
12
13
import UIKit

class ViewController: UIViewController {

    @IBOutlet weak var choice1Button: UIButton!
    @IBOutlet weak var choice2Button: UIButton!
    
    override func viewDidLoad() {
        super.viewDidLoad()
        
        button.setTitle("Change a title",for:.normal)
    }
}