Reputation: 2835
I've been searching all around and I can't find it.
What is the UITableView grouped background color in iOS7
in RGB?
Upvotes: 6
Views: 5792
Reputation: 141
Get the color programmatically with:
UIColor.groupTableViewBackground
This way you will always have the same color as the grouped table view - even if Apple change it slightly.
Upvotes: 9
Reputation: 12820
If you mean the grey color as seen here:
It's
#EFEFF4 or rgb(239, 239, 244)
Upvotes: 15