i have pretty simple simple question (i hope so). How do i change the section header color in a UITableview from default blue to black transparent?
Thanks in advance.
i have pretty simple simple question (i hope so). How do i change the
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
you need to implement this method in the UITableViewDelegate protocol:
Here is a link to the documentation
… and do something like this (sub in your own color):
You can also use the section integer to alternate colors or something similar. I think the default height for the sections is 22, but you can make it whatever you want. Is this what you meant by your question? Hope this helps.