uibuttn UIButton

来源:互联网 发布:吐槽 程序员男友 编辑:程序博客网 时间:2024/04/28 07:01

按钮添加事件


UIButton *btn=[UIButtonbuttonWithType:UIButtonTypeRoundedRect];

    btn.frame=CGRectMake(26,6, 135, 29);

    btn.alpha=0.1;

    [btn addTarget:selfaction:@selector(btn1)forControlEvents:UIControlEventTouchUpInside];

[self.viewaddSubview:btn];


原创粉丝点击