I\'m trying to configure a dark gray seperator color. Why does the following do nothing?
self.tableView.seperatorStyle = UITableViewCellSeperatorStyleSingleL
There are two new methods in UIColor that accept integer values from 0 to 255:
UIColor
UIColor(red: Int, green: Int, blue: Int)
and
UIColor(alpha: Float, red: Int, green: Int, blue: Int)
It's not in the documentation but I've used it and it works like a charm.