当前位置: 代码迷 >> Iphone >> IPhone动态创办控件手动添加事件
  详细解决方案

IPhone动态创办控件手动添加事件

热度:77   发布时间:2016-04-25 06:25:27.0
IPhone动态创建控件手动添加事件

UIButton *actionButton = [[UIButton alloc] initWithFrame:CGRectMake(20.0, 160.0, 280.0, 38.0)];[actionButton addTarget:self action:@selector(decisionButtonPressed) forControlEvents:UIControlEventTouchUpInside];- (void)decisionButtonPressed{}
?
  相关解决方案