In a UITableView grouped style, the background of the table view is sort of like a grayish texture color. How can I grab that value such that I can set the entire background of a UIViewController to be that color?
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.
If you are developing for the iPhone and iPod touch,
UIColordefines agroupTableViewBackgroundColorpattern that you can use:You can also find this color in Interface Builder:
This won’t be available on the iPad, however. You’ll have to grab the image yourself and do a
UIColor.colorWithPatternImage:instead.