Disabled UIButton not faded or grey

后端 未结 19 1614
死守一世寂寞
死守一世寂寞 2020-12-04 16:11

In my iPhone app, I have a UIButton which I have created in Interface Builder. I can successfully enable and disable it like this in my code ...

sendButton.e         


        
19条回答
  •  谎友^
    谎友^ (楼主)
    2020-12-04 16:38

    If you use a text button, you can put into viewDidLoad the instance method

    - (void)setTitleColor:(UIColor *)color forState:(UIControlState)state
    

    example:

    [self.syncImagesButton setTitleColor:[UIColor grayColor] forState:UIControlStateDisabled];
    

提交回复
热议问题