On Jan 23, 2014, at 2:54 AM, Rick Mann <[email protected]> wrote:

> In my app, tapping on a UITableViewCell turns it gray. In the Settings app, 
> it's blue. Is this just another instance of the Settings app using 
> non-standard (and better-looking) UITableViews?
> 

You can change it.  Here is what I use in one of my apps:

UIView *selectedBackgroundView = [[UIView alloc] initWithFrame:cell.frame];
selectedBackgroundView.backgroundColor = [UIColor colorWithRed:244.0/255.0 
green:244.0/255.0 blue:244.0/255.0 alpha:1];
cell.selectedBackgroundView = selectedBackgroundView;

-Nick
_______________________________________________

Cocoa-dev mailing list ([email protected])

Please do not post admin requests or moderator comments to the list.
Contact the moderators at cocoa-dev-admins(at)lists.apple.com

Help/Unsubscribe/Update your Subscription:
https://lists.apple.com/mailman/options/cocoa-dev/archive%40mail-archive.com

This email sent to [email protected]

Reply via email to