How to change button text in Swift Xcode 6?

前端 未结 8 803
囚心锁ツ
囚心锁ツ 2021-01-30 03:48

Here\'s what I\'m trying to do. If you\'ve ever played Halo or CoD, you\'d know that you could change the name of a weapon load-out.

What I\'m doing is making it so you

相关标签:
8条回答
  • 2021-01-30 04:23

    Note that if you're using NSButton there is no setTitle func, instead, it's a property.

    @IBOutlet weak var classToButton: NSButton!
    
    . . .
    
    
    classToButton.title = "Some Text"
    
    0 讨论(0)
  • 2021-01-30 04:25

    You can do:

    button.setTitle("my text here", forState: .normal)
    

    Swift 3 and 4:

    button.setTitle("my text here", for: .normal)
    
    0 讨论(0)
提交回复
热议问题