iOS实现按钮点击选中与被选中切换功能
其实这个没什么记的,初始化按钮给按钮分别设置选中时对图片和被选中时的图片,给按钮添加方法,在方法中实现三句话就OK了,下面直接看代码: 首先在.m中声明一个按钮 @property (nonatomic, strong) UIButton *selecBtn; //初始化按钮 UIButton * button = [UIButton buttonWithType:UIButtonTypeCustom]; //给按钮设置图片 ] forState:UIControlStateNormal]; ] forState:UIControlStateDisabled]; //添加方法
下载地址
用户评论