If you set you tableviewcell with CellStyle.Value2 you get a default color of blue that matches UITableViewController
I can override that default gray in Value1 style
cell = new UITableViewCell (UITableViewCellStyle.Value1, sessionCellId);
//Override Default Gray in style Value1 cell.DetailTextLabel.TextColor = UIColor.Blue; //<- not the same blue in Value2 cell style
Do you know the RGB code or another way to set the DetailTextLabel Color