iOS UIButton类型图详解

typedef NS_ENUM(NSInteger, UIButtonType) {

UIButtonTypeCustom = 0,                        // no button type

UIButtonTypeSystem NS_ENUM_AVAILABLE_IOS(7_0),  // standard system button

UIButtonTypeDetailDisclosure,

UIButtonTypeInfoLight,

UIButtonTypeInfoDark,

UIButtonTypeContactAdd,

UIButtonTypeRoundedRect = UIButtonTypeSystem,  // Deprecated, use UIButtonTypeSystem instead

iOS UIButton类型图详解_第1张图片
UIButtonTypeSystem


iOS UIButton类型图详解_第2张图片
UIButtonTypeContactAdd


iOS UIButton类型图详解_第3张图片
UIButtonTypeInfoDark



iOS UIButton类型图详解_第4张图片
UIButtonTypeDetailDisclosure

你可能感兴趣的:(iOS UIButton类型图详解)