当前位置:  开发笔记 > 编程语言 > 正文

如何将参数传递给此函数?

如何解决《如何将参数传递给此函数?》经验,为你挑选了1个好方法。

我有以下代码:

[replyAllBtn addTarget:self.target action:@selector(ReplyAll:) forControlEvents:UIControlEventTouchUpInside];

- (void)replyAll:(NSInteger)tid {
// some code
}

如何向ReplyAll函数发送参数?



1> Rob Fonseca-..:

replyAll方法应该接受(id)发送者.如果UIButton触发了该事件,那么相同的UIButton将作为发件人传递.UIButton有一个属性"标记",您可以将自己的自定义数据附加到(很像.net winforms).

所以你要把你的活动挂钩:

[replyAllBtn addTarget:self.target action:@selector(ReplyAll:) forControlEvents:UIControlEventTouchUpInside];
replyAllBtn.tag=15;

然后处理它:

(void) ReplyAll:(id)sender{
    NSInteger *tid = ((UIControl*)sender).tag;
    //...

推荐阅读
赛亚兔备_393
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有