I know how to put a checkmark as the acessoryView of my UITableViewCell. Unlike the Settings app, my textLabel does not become blue when there’s a checkmark next to it. Is there a simple style property I have to set for this to happen or am I forced to manually change the textColor property on the textLabel? If the latter is true, is this particular shade of blue stored as a constant somewhere?

selectedTextColorhas been deprecated in iOS 3.0 so I think you have to use thehighlightedTextColorproperty of theUITableViewCell‘stextLabelproperty. And I believe[UIColor colorWithRed:50.0/255.0 green:79.0/255.0 blue:132.0/255.0 alpha:1.0]is the correct default shade of blue that is used for highlighted text:UITableViewCellDocumentation.Yoou might also want a different cell style then the default.
UITableViewCellStyleValue1is what the Settings App uses:Got the color from this SO question (text-color-to-match-default…)