您好,登錄后才能下訂單哦!
這篇文章主要介紹iOS如何實(shí)現(xiàn)按鈕點(diǎn)擊選中與被選中切換功能,文中介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們一定要看完!
其實(shí)這個(gè)沒什么記的,初始化按鈕給按鈕分別設(shè)置選中時(shí)對(duì)圖片和被選中時(shí)的圖片,給按鈕添加方法,在方法中實(shí)現(xiàn)三句話就OK了,下面直接看代碼:
首先在.m中聲明一個(gè)按鈕
@property (nonatomic, strong) UIButton *selecBtn;
//初始化按鈕 UIButton * button = [UIButton buttonWithType:UIButtonTypeCustom]; //給按鈕設(shè)置圖片 [button setBackgroundImage:[UIImage imageNamed:imageArray[i]] forState:UIControlStateNormal]; [button setBackgroundImage:[UIImage imageNamed:SeleimageArray[i]] forState:UIControlStateDisabled]; //添加方法 [button addTarget:self action:@selector(changeDataButton:) forControlEvents:UIControlEventTouchDown];
然后在方法中如下:
- (IBAction)btnClick:(UIButton *)btn { self.selecBtn.enabled = YES; btn.enabled = NO; self.selecBtn = btn; }
以上是“iOS如何實(shí)現(xiàn)按鈕點(diǎn)擊選中與被選中切換功能”這篇文章的所有內(nèi)容,感謝各位的閱讀!希望分享的內(nèi)容對(duì)大家有幫助,更多相關(guān)知識(shí),歡迎關(guān)注億速云行業(yè)資訊頻道!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。