UITableView grouped background color in iOS7?
If you mean the grey color as seen here:
It's
#EFEFF4 or rgb(239, 239, 244)
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.