What is the color that Apple uses for the separators in a grouped UITableView?
Is there a constant or some way I can access this programmatically?
The inspector tool in the Apple's color picker, reports the color as follows:
#c8c7cc
200, 199, 204
0.783922, 0.780392, 0.8
You can access this value programmatically by accessing the table view's separatorColor property.
UIColor *separatorColor = self.tableView.separatorColor;
// [separatorColor description] = UIDeviceRGBColorSpace 0.783922 0.780392 0.8 1
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With