Button多參數(shù)點(diǎn)擊

iOS 原生的 UIButton 點(diǎn)擊事件是不允許帶多參數(shù)的嘶炭,唯一的一個(gè)參數(shù)就是默認(rèn)UIButton本身
那么我們該怎么實(shí)現(xiàn)傳遞多個(gè)參數(shù)的點(diǎn)擊事件呢裂逐?

1.如果業(yè)務(wù)場景非常簡單歹鱼,要求傳單參數(shù)并且是整數(shù)類型,可以用tag

[cell.deleteButton setTag:indexPath.row];  //例如卜高,將cell的行數(shù)設(shè)置成tag  

2.利用ObjC關(guān)聯(lián)弥姻,runtime之所以被稱為iOS 的動(dòng)態(tài)特性是有道理的南片,當(dāng)然關(guān)聯(lián)甚至可以幫助NSArray等其他對象實(shí)現(xiàn)“多參數(shù)傳遞”
實(shí)現(xiàn)起來也非常簡便:

UIButton *btn = // create the button  
objc_setAssociatedObject(btn, "firstObject", someObject, OBJC_ASSOCIATION_RETAIN_NONATOMIC);   //實(shí)際上就是KVC  
objc_setAssociatedObject(btn, "secondObject", otherObject, OBJC_ASSOCIATION_RETAIN_NONATOMIC);  
  
[btn addTarget:self action:@selector(click:) forControlEvents:UIControlEventTouchUpInside];  
  
- (void)click:(UIButton *)sender  
{  
    id first = objc_getAssociatedObject(btn, "firstObject");        //取參  
    id second = objc_setAssociatedObject(btn, "secondObject");  
    // etc.  
}  

3.利用自定義,添加一個(gè)多參數(shù)的字典屬性變量即可(為什么要字典庭敦?可以裝多多的)
自定義Button子類疼进,甚至都不用重寫啥的:

@interface MultiParamButton : UIButton  
  
@property (nonatomic, strong) NSDictionary* multiParamDic;  
  
@end  

傳參:

NSDictionary* paramDic = @{@"one":@"one", @"two":@2, @"third":@(3)};  
  
MultiParamButton* multiParamButton = [[MultiParamButton alloc] init];  
[multiParamButton setFrame:CGRectMake(0, 0, 50, 50)];  
multiParamButton.center = self.view.center;  
[multiParamButton setBackgroundColor:[UIColor grayColor]];  
[multiParamButton addTarget:self action:@selector(multiParamButtonClicked:) forControlEvents:UIControlEventTouchUpInside];  
[self.view addSubview:multiParamButton];  
  
multiParamButton.multiParamDic = paramDic;  

點(diǎn)擊:

- (void)multiParamButtonClicked:(UIButton* )button  
{  
    MultiParamButton* multiParamButton = (MultiParamButton* )button;  
      
    NSLog(@"Vvvverify : %@", multiParamButton.multiParamDic);  
}  

爽爽的:


當(dāng)然,如果用擴(kuò)展秧廉,然后添加property后重寫GetSet也是一樣一樣的

4.完全不在Button上入手伞广,針對業(yè)務(wù)來,最常見的就是在TableViewCell上面的Button疼电,這種存在(視圖)繼承樹之間的傳遞嚼锄,這里舉個(gè)簡單的例子
Button獲取所屬父視圖的所屬視圖控制器的參數(shù),間接傳參

#import "LBMultiParamButtonController.h"  
#import "MultiParamButton.h"  
  
@interface LBMultiParamButtonController ()  
@property (nonatomic, strong) NSDictionary* paramDic;  
@end  
  
@implementation LBMultiParamButtonController  
  
- (id)init  
{  
    self = [super init];  
  
    if (self)  
    {  
        _paramDic = @{@"one":@"one", @"two":@2, @"third":@(3)};  
    }  
      
    return self;  
}  
  
- (void)viewDidLoad  
{  
    [super viewDidLoad];  
      
    UIButton* button = [UIButton buttonWithType:UIButtonTypeCustom];  
    [button setFrame:CGRectMake(0, 0, 50, 50)];  
    [button setCenter:self.view.center];  
    [button setBackgroundColor:[UIColor grayColor]];  
    [button addTarget:self action:@selector(buttonClicked:) forControlEvents:UIControlEventTouchUpInside];  
    [self.view addSubview:button];  
}  
  
- (void)buttonClicked:(UIButton* )button  
{  
      
    LBMultiParamButtonController* multiParamButtonController = nil;        
    //獲取button所屬的視圖控制器蔽豺,如果視圖控制器都能獲取区丑,還有什么不能獲取呢?  
    for(UIView* next = [button superview]; next; next = next.superview)  
    {  
        UIResponder *nextResponder = [next nextResponder];  
        if ([nextResponder isKindOfClass:[LBMultiParamButtonController class]])  
        {  
            multiParamButtonController = (LBMultiParamButtonController* )nextResponder;  
            break;  
        }  
    }  
      
    NSLog(@"param : %@", multiParamButtonController.paramDic);  
}  
  
@end  

這種非常多的用在UITableViewCell上自定義的按鈕的參數(shù)的情況修陡!

5.利用Delegate和performSelector:withObject:withObject 方法可以傳遞最多兩個(gè)參數(shù):
定義protocol:

#pragma mark - SYAccountListCellDelegate.  
  
@class SYAccountListCell;  
  
@protocol  SYAccountListCellDelegate <NSObject>  
  
- (void)accountListCell:(SYAccountListCell* )cell didTapButton:(UIButton* )button;  
  
@end  

自定義Cell的時(shí)候?qū)⒛阆雮鞯臇|西傳進(jìn)入沧侥,這里用cell和button做例子:

@implementation SYAccountListCell  
  
- (id)initWithStyle:(UITableViewCellStyle)style reuseIdentifier:(NSString *)reuseIdentifier  
{  
    self = [super initWithStyle:style reuseIdentifier:reuseIdentifier];  
      
    if (self)  
    {  
          
        self.deleteButton = [UIButton buttonWithType:UIButtonTypeCustom];  
        [self.deleteButton setFrame:CGRectMake(225,  
                                               5,  
                                               40,  
                                               40)];  
        [self.deleteButton setBackgroundColor:[UIColor redColor]];  
        [self.deleteButton addTarget:self action:@selector(deleteButtonClicked:) forControlEvents:UIControlEventTouchUpInside];  
        [self.contentView addSubview:self.deleteButton];  
    }  
      
    return self;  
}  
  
- (void)deleteButtonClicked:(UIButton* )button  
{  
    if ([self.delegate respondsToSelector:@selector(accountListCell:didTapButton:)])  
    {  
        [self.delegate performSelector:@selector(accountListCell:didTapButton:) withObject:self withObject:button];  
    }  
}  
  
@end  

Delegate實(shí)現(xiàn):

#pragma mark - SYAccountListCellDelegate.  
  
- (void)accountListCell:(SYAccountListCell *)cell didTapButton:(UIButton *)button  
{  
    NSLog(@"Cell : %@ , Button : %@", cell, button);  
}  

雖然有點(diǎn)曲折,但是傳參效果非常到位
這里補(bǔ)充一下魄鸦,這里的最多兩個(gè)參數(shù)是直面的參數(shù)個(gè)數(shù)宴杀,如果將參數(shù)設(shè)置位結(jié)構(gòu)體,那么就皆大歡喜啦号杏,想怎么傳就怎么傳婴氮!

6.利用Block 和 關(guān)聯(lián) , 直接可以當(dāng)前點(diǎn)擊并且操作參數(shù) - 強(qiáng)盾致!

#import <UIKit/UIKit.h>  
  
typedef void (^ActionBlock)();  
  
@interface UIButton (Utility)  
  
@property (readonly) NSMutableDictionary *event;  
  
- (void) handleControlEvent:(UIControlEvents)controlEvent withBlock:(ActionBlock)action;  
  
@end  

實(shí)現(xiàn)文件:

#import <objc/runtime.h>  
#import "UIButton+Utility.h"  
  
@implementation UIButton (Utility)  
  
static char overviewKey;  
  
@dynamic event;  
  
- (void)handleControlEvent:(UIControlEvents)event withBlock:(ActionBlock)block  
{  
    objc_setAssociatedObject(self, &overviewKey, block, OBJC_ASSOCIATION_COPY_NONATOMIC);  
      
    [self addTarget:self action:@selector(callActionBlock:) forControlEvents:event];  
}  
  
  
- (void)callActionBlock:(id)sender  
{  
    ActionBlock block = (ActionBlock)objc_getAssociatedObject(self, &overviewKey);  
      
    if (block)  
    {  
        block();  
    }  
}  
  
@end  

操作:

[button handleControlEvent:UIControlEventTouchUpInside withBlock:^{  
    NSLog(@"ssss : %@", self.paramDic);  
}];  
最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末主经,一起剝皮案震驚了整個(gè)濱河市,隨后出現(xiàn)的幾起案子庭惜,更是在濱河造成了極大的恐慌罩驻,老刑警劉巖,帶你破解...
    沈念sama閱讀 211,290評論 6 491
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件护赊,死亡現(xiàn)場離奇詭異惠遏,居然都是意外死亡,警方通過查閱死者的電腦和手機(jī)骏啰,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 90,107評論 2 385
  • 文/潘曉璐 我一進(jìn)店門节吮,熙熙樓的掌柜王于貴愁眉苦臉地迎上來,“玉大人判耕,你說我怎么就攤上這事透绩。” “怎么了?”我有些...
    開封第一講書人閱讀 156,872評論 0 347
  • 文/不壞的土叔 我叫張陵帚豪,是天一觀的道長碳竟。 經(jīng)常有香客問我,道長狸臣,這世上最難降的妖魔是什么莹桅? 我笑而不...
    開封第一講書人閱讀 56,415評論 1 283
  • 正文 為了忘掉前任,我火速辦了婚禮烛亦,結(jié)果婚禮上诈泼,老公的妹妹穿的比我還像新娘。我一直安慰自己此洲,他們只是感情好厂汗,可當(dāng)我...
    茶點(diǎn)故事閱讀 65,453評論 6 385
  • 文/花漫 我一把揭開白布。 她就那樣靜靜地躺著呜师,像睡著了一般。 火紅的嫁衣襯著肌膚如雪贾节。 梳的紋絲不亂的頭發(fā)上汁汗,一...
    開封第一講書人閱讀 49,784評論 1 290
  • 那天,我揣著相機(jī)與錄音栗涂,去河邊找鬼知牌。 笑死,一個(gè)胖子當(dāng)著我的面吹牛斤程,可吹牛的內(nèi)容都是我干的角寸。 我是一名探鬼主播,決...
    沈念sama閱讀 38,927評論 3 406
  • 文/蒼蘭香墨 我猛地睜開眼忿墅,長吁一口氣:“原來是場噩夢啊……” “哼扁藕!你這毒婦竟也來了?” 一聲冷哼從身側(cè)響起疚脐,我...
    開封第一講書人閱讀 37,691評論 0 266
  • 序言:老撾萬榮一對情侶失蹤亿柑,失蹤者是張志新(化名)和其女友劉穎,沒想到半個(gè)月后棍弄,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體望薄,經(jīng)...
    沈念sama閱讀 44,137評論 1 303
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 36,472評論 2 326
  • 正文 我和宋清朗相戀三年呼畸,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了痕支。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片。...
    茶點(diǎn)故事閱讀 38,622評論 1 340
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡蛮原,死狀恐怖卧须,靈堂內(nèi)的尸體忽然破棺而出,到底是詐尸還是另有隱情,我是刑警寧澤故慈,帶...
    沈念sama閱讀 34,289評論 4 329
  • 正文 年R本政府宣布板熊,位于F島的核電站,受9級特大地震影響察绷,放射性物質(zhì)發(fā)生泄漏干签。R本人自食惡果不足惜,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,887評論 3 312
  • 文/蒙蒙 一拆撼、第九天 我趴在偏房一處隱蔽的房頂上張望容劳。 院中可真熱鬧,春花似錦闸度、人聲如沸竭贩。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,741評論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽留量。三九已至,卻和暖如春哟冬,著一層夾襖步出監(jiān)牢的瞬間楼熄,已是汗流浹背。 一陣腳步聲響...
    開封第一講書人閱讀 31,977評論 1 265
  • 我被黑心中介騙來泰國打工浩峡, 沒想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留可岂,地道東北人。 一個(gè)月前我還...
    沈念sama閱讀 46,316評論 2 360
  • 正文 我出身青樓翰灾,卻偏偏與公主長得像缕粹,于是被迫代替她去往敵國和親。 傳聞我的和親對象是個(gè)殘疾皇子纸淮,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 43,490評論 2 348

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

  • Android 自定義View的各種姿勢1 Activity的顯示之ViewRootImpl詳解 Activity...
    passiontim閱讀 171,756評論 25 707
  • 隨著離去的腳步平斩, 雪花也為你飛舞。 前途的迷路 有誰為你解憂 任雪花瀟瀟灑灑 也無意阻擋韓流 前途的迷路 只有自己...
    純真的云卷云舒_6閱讀 114評論 0 2
  • 我們之間是沒法交流的萎馅,而我很清楚問題不在我身上双戳,或許我確實(shí)缺乏一些耐心∶臃迹可我無法理解她不能用一點(diǎn)點(diǎn)的時(shí)間來聽我把事...
    燈塔高處閱讀 150評論 0 0
  • 這本書的作者被《快公司》譽(yù)為“商業(yè)領(lǐng)域最具創(chuàng)意的一百人”和“推特上最具創(chuàng)意的十位博主”之一飒货。她的絕招是涂鴉,通過“...
    朱桃子閱讀 271評論 2 1
  • 類主構(gòu)造器 主構(gòu)造器的定義與類的定義交織在一直峭竣,將構(gòu)造器參數(shù)直接放在類名稱之后塘辅,如下代碼: 主構(gòu)造器還可以使用默認(rèn)...
    LuciferTM閱讀 269評論 0 0