Manuel Escrig
Manuel Escrig

Reputation: 2835

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?

Upvotes: 6

Views: 5792

Answers (2)

Mikkelu
Mikkelu

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

the_critic
the_critic

Reputation: 12820

If you mean the grey color as seen here:

enter image description here

It's

#EFEFF4 or rgb(239, 239, 244)

Upvotes: 15

Related Questions