Text Color to Match Default UIButton Color [Blue]
iphone
Solution
Use this code to set the color using RGB value
cell.textLabel.textColor = [UIColor colorWithRed:.196 green:0.3098 blue:0.52 alpha:1.0];
Problem
The default UIButton round rectangle is that dark blue. I want my cell's text in a table to match this blue color. I am using this code but the only blue I can find is a bright blue... ``` cell.textLabel.textColor = [UIColor blueColor]; ```