自定义按钮
2017-12-26 本文已影响14人
说不出口的喵
- (void)ButTouch:(UIButton *)btn
{
btn.selected = !btn.selected;
if (btn.selected)
{ [btn setBackgroundColor:[UIColor blueColor]];
NSLog(@"----------1-1-----");
}
else
{
btn.backgroundColor = [UIColor redColor];
NSLog(@"---------222-----");
}
}