iOS-UIButton 全面解析

UIButton 的全面解析

建議收藏寺惫,用到的時候來這里一查就都明白了
//初始化Button 不用alloca init 的方法 用便利構(gòu)造器初始化
UIButton *button = [UIButton buttonWithType:UIButtonTypeSystem];

typedef NS_ENUM(NSInteger, UIButtonType) {
    UIButtonTypeCustom = 0,       -自定義風(fēng)格
    UIButtonTypeSystem NS_ENUM_AVAILABLE_IOS(7_0),
    UIButtonTypeDetailDisclosure, -藍(lán)色小箭頭按鈕疹吃,主要做詳細(xì)說明
    UIButtonTypeInfoLight,        -亮色感嘆號
    UIButtonTypeInfoDark,         -暗色感嘆號
    UIButtonTypeContactAdd,       -十字加號按鈕
    UIButtonTypeRoundedRect = UIButtonTypeSystem,  -圓角矩形
};
//設(shè)置button frmae 
button.frame = CGRectMake(100, 100, 100, 100);
//設(shè)置button 背景顏色
button.backgroundColor = [UIColor orangeColor];
//添加button的標(biāo)題
[button setTitle:@"登陸" forState:UIControlStateNormal];
//設(shè)置標(biāo)題的顏色
[button setTitleColor:[UIColor redColor] forState:UIControlStateNormal];
//設(shè)置標(biāo)題字體的大小
button.titleLabel.font = [UIFont systemFontOfSize:20];
//設(shè)置button的背景圖片
[button setBackgroundImage:[UIImage imageNamed:@"11.png"] forState:UIControlStateNormal];
//獲取指定狀態(tài)下的背景圖片
UIImage *tempImage = [button imageForState:UIControlStateNormal];
//設(shè)置前景圖片  前景圖片必須是鏤空圖,或者是線條勾勒的圖片
[button setImage:[UIImage imageNamed:@"7.png"] forState:UIControlStateNormal];
//設(shè)置陰影顏色
[button setTitleShadowColor:[UIColor purpleColor] forState:UIControlStateNormal];

//button 一些其他屬性
@property(nonatomic)  UIEdgeInsets contentEdgeInsets; 內(nèi)容內(nèi)距離
@property(nonatomic)  UIEdgeInsets titleEdgeInsets;   標(biāo)題內(nèi)距離
@property(nonatomic)  BOOL  reversesTitleShadowWhenHighlighted; 標(biāo)題的陰影改變時西雀,按鈕是否高亮顯示萨驶。默認(rèn)為NO
@property(nonatomic)  UIEdgeInsets imageEdgeInsets;   圖片內(nèi)邊距
@property(nonatomic)  BOOL adjustsImageWhenHighlighted;按鈕高亮的情況下,圖像的顏色是否要加深一點艇肴。默認(rèn)是YES
@property(nonatomic)  BOOL adjustsImageWhenDisabled; 按鈕禁用的情況下腔呜,圖像的顏色是否要加深一點判莉。默認(rèn)是YES
@property(nonatomic)  BOOL showsTouchWhenHighlighted; 按下按鈕是否會發(fā)光 默認(rèn)是NO
@property(nonatomic,readonly) UIButtonType buttonType; button的類型



設(shè)置button某個狀態(tài)的標(biāo)題
- (void)setTitle:(nullable NSString *)title forState:(UIControlState)state;
例: [button setTitle:@"開燈" forState:UIControlStateNormal];

設(shè)置button某個狀態(tài)的標(biāo)題顏色
- (void)setTitleColor:(nullable UIColor *)color forState:(UIControlState)state
例:[button setTitleColor:[UIColor blueColor] forState:UIControlStateNormal];

設(shè)置button某個狀態(tài)陰影的標(biāo)題顏色
- (void)setTitleShadowColor:(nullable UIColor *)color forState:(UIControlState)state
例:[button setTitleShadowColor:[UIColor purpleColor] forState:UIControlStateNormal];

設(shè)置button某個狀態(tài)圖片
- (void)setImage:(nullable UIImage *)image forState:(UIControlState)state;

設(shè)置button 某個狀態(tài)背景圖片
- (void)setBackgroundImage:(nullable UIImage *)image forState:(UIControlState)state UI_APPEARANCE_SELECTOR; // default is nil

設(shè)置button 某個狀態(tài)下的富文本標(biāo)題
- (void)setAttributedTitle:(nullable NSAttributedString *)title forState:(UIControlState)state NS_AVAILABLE_IOS(6_0); // default is nil. title is assumed to be single line

返回button 某個狀態(tài)下的標(biāo)題
- (nullable NSString *)titleForState:(UIControlState)state;

返回button 某個狀態(tài)下的標(biāo)題顏色
- (nullable UIColor *)titleColorForState:(UIControlState)state;

返回button 某個狀態(tài)下的陰影標(biāo)題顏色
- (nullable UIColor *)titleShadowColorForState:(UIControlState)state;

返回button 某個狀態(tài)下的圖片
- (nullable UIImage *)imageForState:(UIControlState)state;

返回button 某個狀態(tài)下的背景圖片
- (nullable UIImage *)backgroundImageForState:(UIControlState)state;

返回button 某個狀態(tài)下的富文本標(biāo)題
- (nullable NSAttributedString *)attributedTitleForState:(UIControlState)state NS_AVAILABLE_IOS(6_0);

/* forState: 這個參數(shù)的作用是定義按鈕的文字或圖片在何種狀態(tài)下才會顯現(xiàn)*/
以下是幾種狀態(tài)
 enum {
UIControlStateNormal = 0, 常規(guī)狀態(tài)顯現(xiàn)
UIControlStateHighlighted = 1 << 0, 高亮狀態(tài)顯現(xiàn)
UIControlStateDisabled = 1 << 1, 禁用的狀態(tài)才會顯現(xiàn)
UIControlStateSelected = 1 << 2, 選中狀態(tài)
UIControlStateApplication = 0x00FF0000, 當(dāng)應(yīng)用程序標(biāo)志時
UIControlStateReserved = 0xFF000000 為內(nèi)部框架預(yù)留,可以不管他
 };



獲取按鈕當(dāng)前標(biāo)題
@property(nullable, nonatomic,readonly,strong) NSString *currentTitle;

獲取按鈕當(dāng)前標(biāo)題顏色
@property(nonatomic,readonly,strong) UIColor  *currentTitleColor;

獲取按鈕當(dāng)前陰影標(biāo)題顏色
@property(nullable, nonatomic,readonly,strong) UIColor *currentTitleShadowColor;

獲取按鈕當(dāng)前按鈕內(nèi)圖像
@property(nullable, nonatomic,readonly,strong) UIImage  *currentImage;

獲取按鈕當(dāng)前標(biāo)題背景圖片
@property(nullable, nonatomic,readonly,strong) UIImage  *currentBackgroundImage;

獲取按鈕當(dāng)前標(biāo)題富文本
@property(nullable, nonatomic,readonly,strong) NSAttributedString *currentAttributedTitle

@property(nullable, nonatomic,readonly,strong) UILabel    *titleLabel NS_AVAILABLE_IOS(3_0);
@property(nullable, nonatomic,readonly,strong) UIImageView *imageView  NS_AVAILABLE_IOS(3_0);

指定背景邊界
- (CGRect)backgroundRectForBounds:(CGRect)bounds;
指定內(nèi)容邊界
- (CGRect)contentRectForBounds:(CGRect)bounds;
指定標(biāo)題邊界
- (CGRect)titleRectForContentRect:(CGRect)contentRect;
指定圖片邊界
- (CGRect)imageRectForContentRect:(CGRect)contentRect;

示例:
- (CGRect)imageRectForContentRect:(CGRect)bounds{
        return CGRectMake(0.0, 0.0, 44, 44);
    }
@end

//給按鈕添加點擊事件
[button addTarget:self action:@selector(action:) forControlEvents:UIControlEventTouchUpInside];

枚舉值:
    UIControlEventTouchDown             // 單點觸摸按下事件:用戶點觸屏幕育谬,或者又有新手指落下的時候券盅。
    UIControlEventTouchDownRepeat       // 多點觸摸按下事件,點觸計數(shù)大于1:用戶按下第二膛檀、三锰镀、或第四根手指的時候。
    UIControlEventTouchDragInside       // 當(dāng)一次觸摸在控件窗口內(nèi)拖動時咖刃。
    UIControlEventTouchDragOutside      // 當(dāng)一次觸摸在控件窗口之外拖動時泳炉。
    UIControlEventTouchDragEnter        // 當(dāng)一次觸摸從控件窗口之外拖動到內(nèi)部時
    UIControlEventTouchDragExit         // 當(dāng)一次觸摸從控件窗口內(nèi)部拖動到外部時。
    UIControlEventTouchUpInside         // 所有在控件之內(nèi)觸摸抬起事件
    UIControlEventTouchUpOutside        // 所有在控件之外觸摸抬起事件(點觸必須開始與控件內(nèi)部才會發(fā)送通知)嚎杨。
    UIControlEventTouchCancel           // 所有觸摸取消事件花鹅,即一次觸摸因為放上了太多手指而被取消,或者被上鎖或者電話呼叫打斷枫浙。

    UIControlEventValueChanged          // 當(dāng)控件的值發(fā)生改變時刨肃,發(fā)送通知。用于滑塊箩帚、分段控件真友、以及其他取值的控件。你可以配置滑塊控件何時發(fā)送通知紧帕,在滑塊被放下時發(fā)送盔然,或者在被拖動時發(fā)送。

    UIControlEventEditingDidBegin       // 當(dāng)文本控件中開始編輯時發(fā)送通知
    UIControlEventEditingChanged        // 當(dāng)文本控件中的文本被改變時發(fā)送通知是嗜。
    UIControlEventEditingDidEnd         // 當(dāng)文本控件中編輯結(jié)束時發(fā)送通知愈案。
    UIControlEventEditingDidEndOnExit   // 當(dāng)文本控件內(nèi)通過按下回車鍵(或等價行為)結(jié)束編輯時,發(fā)送通知鹅搪。

    UIControlEventAllTouchEvents        // 通知所有觸摸事件站绪。
    UIControlEventAllEditingEvents      // 通知所有關(guān)于文本編輯的事件。
    UIControlEventApplicationReserved   // range available for application use
    UIControlEventSystemReserved        // range reserved for internal framework use

    UIControlEventAllEvents             // 通知所有事件

如果有錯誤的地方請大家多多指正涩嚣,歡迎評論交流崇众,共同學(xué)習(xí)。

最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末航厚,一起剝皮案震驚了整個濱河市顷歌,隨后出現(xiàn)的幾起案子,更是在濱河造成了極大的恐慌幔睬,老刑警劉巖眯漩,帶你破解...
    沈念sama閱讀 210,835評論 6 490
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件,死亡現(xiàn)場離奇詭異,居然都是意外死亡赦抖,警方通過查閱死者的電腦和手機(jī)舱卡,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 89,900評論 2 383
  • 文/潘曉璐 我一進(jìn)店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來队萤,“玉大人轮锥,你說我怎么就攤上這事∫” “怎么了舍杜?”我有些...
    開封第一講書人閱讀 156,481評論 0 345
  • 文/不壞的土叔 我叫張陵,是天一觀的道長赵辕。 經(jīng)常有香客問我既绩,道長,這世上最難降的妖魔是什么还惠? 我笑而不...
    開封第一講書人閱讀 56,303評論 1 282
  • 正文 為了忘掉前任饲握,我火速辦了婚禮,結(jié)果婚禮上蚕键,老公的妹妹穿的比我還像新娘救欧。我一直安慰自己,他們只是感情好嚎幸,可當(dāng)我...
    茶點故事閱讀 65,375評論 5 384
  • 文/花漫 我一把揭開白布颜矿。 她就那樣靜靜地躺著,像睡著了一般嫉晶。 火紅的嫁衣襯著肌膚如雪。 梳的紋絲不亂的頭發(fā)上田篇,一...
    開封第一講書人閱讀 49,729評論 1 289
  • 那天替废,我揣著相機(jī)與錄音,去河邊找鬼泊柬。 笑死椎镣,一個胖子當(dāng)著我的面吹牛,可吹牛的內(nèi)容都是我干的兽赁。 我是一名探鬼主播状答,決...
    沈念sama閱讀 38,877評論 3 404
  • 文/蒼蘭香墨 我猛地睜開眼,長吁一口氣:“原來是場噩夢啊……” “哼刀崖!你這毒婦竟也來了惊科?” 一聲冷哼從身側(cè)響起,我...
    開封第一講書人閱讀 37,633評論 0 266
  • 序言:老撾萬榮一對情侶失蹤亮钦,失蹤者是張志新(化名)和其女友劉穎馆截,沒想到半個月后,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體,經(jīng)...
    沈念sama閱讀 44,088評論 1 303
  • 正文 獨居荒郊野嶺守林人離奇死亡蜡娶,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點故事閱讀 36,443評論 2 326
  • 正文 我和宋清朗相戀三年混卵,在試婚紗的時候發(fā)現(xiàn)自己被綠了。 大學(xué)時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片窖张。...
    茶點故事閱讀 38,563評論 1 339
  • 序言:一個原本活蹦亂跳的男人離奇死亡幕随,死狀恐怖,靈堂內(nèi)的尸體忽然破棺而出宿接,到底是詐尸還是另有隱情合陵,我是刑警寧澤,帶...
    沈念sama閱讀 34,251評論 4 328
  • 正文 年R本政府宣布澄阳,位于F島的核電站拥知,受9級特大地震影響,放射性物質(zhì)發(fā)生泄漏碎赢。R本人自食惡果不足惜低剔,卻給世界環(huán)境...
    茶點故事閱讀 39,827評論 3 312
  • 文/蒙蒙 一、第九天 我趴在偏房一處隱蔽的房頂上張望肮塞。 院中可真熱鬧襟齿,春花似錦、人聲如沸枕赵。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,712評論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽拷窜。三九已至开皿,卻和暖如春,著一層夾襖步出監(jiān)牢的瞬間篮昧,已是汗流浹背赋荆。 一陣腳步聲響...
    開封第一講書人閱讀 31,943評論 1 264
  • 我被黑心中介騙來泰國打工, 沒想到剛下飛機(jī)就差點兒被人妖公主榨干…… 1. 我叫王不留懊昨,地道東北人窄潭。 一個月前我還...
    沈念sama閱讀 46,240評論 2 360
  • 正文 我出身青樓,卻偏偏與公主長得像酵颁,于是被迫代替她去往敵國和親嫉你。 傳聞我的和親對象是個殘疾皇子,可洞房花燭夜當(dāng)晚...
    茶點故事閱讀 43,435評論 2 348

推薦閱讀更多精彩內(nèi)容