Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

UITableView grouped background color in iOS7?

I've been searching all around and I can't find it.

What is the UITableView grouped background color in iOS7 in RGB?

like image 796
Manuel Escrig Avatar asked Sep 07 '15 18:09

Manuel Escrig


2 Answers

If you mean the grey color as seen here:

enter image description here

It's

#EFEFF4 or rgb(239, 239, 244)

like image 66
the_critic Avatar answered Oct 21 '22 22:10

the_critic


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.

like image 41
Mikkelu Avatar answered Oct 21 '22 22:10

Mikkelu