🪬UIButtonの文字の変更2021/05/09に公開2024/07/26iOSSwifttechUIButton の文字を動的に変更したい場合は IBAction に記述します。 以下のように設定することで、ボタンがタップされた時に文字が変更します。 @IBAction func greeting(_ sender: UIButton) { sender.titleLabel?.text = "こんにちは。" } 参考記事 https://teratail.com/questions/165353 Discussion
Discussion