[UIKit]버튼 Text변경

힐링힐링·2023년 11월 16일
0

UIKIt

목록 보기
3/5

    @IBAction func btnZoom(_ sender: UIButton) {
        //버튼 Text변경하기
        if !isZoom{
            isZoom = true
            btnValue.setTitle("확대", for: UIControl.State())
        }else{
            isZoom = false
            btnValue.setTitle("축소", for: UIControl.State())
        }
    }
profile
재밌겠네 ? 해봐야지 ~

0개의 댓글