iOS为不同的button添加不同的方法
Posted 1018475062
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了iOS为不同的button添加不同的方法相关的知识,希望对你有一定的参考价值。
x_button = x_space + line * (x_space + buttonWidth);
y_button = y_space + row * (y_margin + buttonHeight);
NSString *title = dicArray[i][@"title"];
NSString *imageStr = dicArray[i][@"image"];
SEL selector = NSSelectorFromString(selectorArray[i]); // 反射机制,只要添加方法名的字符串,就能获得方法
HHSetButton *button = [HHSetButton buttonWithType:UIButtonTypeCustom];
[button addTarget:self action:selector forControlEvents:UIControlEventTouchUpInside];
以上是关于iOS为不同的button添加不同的方法的主要内容,如果未能解决你的问题,请参考以下文章
The Swift Code之设置UIButton的不同方式创建,以及不同的状态和外观