首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 移动开发 > Iphone >

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

2012-09-02 
IPhone动态创建控件手动添加事件UIButton *actionButton [[UIButton alloc] initWithFrame:CGRectMake(2

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{}
?

热点排行