UIColor支持的几种非一般背景色

UIColor支持的几种特殊背景色UIColor支持的几种特殊背景色 self.view.backgroundColor [UIColor viewFli

UIColor支持的几种特殊背景色

UIColor支持的几种特殊背景色

 

self.view.backgroundColor = [UIColor viewFlipsideBackgroundColor];

+ (UIColor *)lightTextColor; // for a dark background

+ (UIColor *)darkTextColor; // for a light background

// Group style table view backgrounds can no longer be represented by a simple color.

// If you want to have a background in your own view that looks like the table view background,

// then you should create an empty table view and place it behind your content.

+ (UIColor *)groupTableViewBackgroundColor; // This method will be deprecated during the 6.0 seed program

+ (UIColor *)viewFlipsideBackgroundColor;

+ (UIColor *)scrollViewTexturedBackgroundColor NS_AVAILABLE_IOS(3_2);

+ (UIColor *)underPageBackgroundColor NS_AVAILABLE_IOS(5_0);