读书人

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

发布时间: 2013-02-15 15:46:56 作者: rapoo

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);


读书人网 >移动开发

热点推荐