Home Answers Viewqa Mobile-Applications How can I change UIButton title color?

 
 


Deepak Kumar
How can I change UIButton title color?
2 Answer(s)      2 years and 4 months ago
Posted in : MobileApplications

Hi,

I have a button in my iPhone/iPad application. I want to change the color of the text when user clicks on it making it selected.

Provide me good example code.

Thanks

View Answers

January 2, 2011 at 2:30 PM


Hi,

You have to set the color of the button for a particular state say: forSelected.

Use the following code:

[myButtonsetTitleColor:[UIColor redColor] forState:UIControlStateNormal];

Thanks


January 2, 2011 at 2:31 PM


Hi,

There is space between myButton setTitleColor.

Here is corrected code:

[myButton setTitleColor:[UIColor redColor] forState:UIControlStateNormal];

Thanks









Related Pages:

Ask Questions?

If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.

Ask your questions, our development team will try to give answers to your questions.