- 在使用UIButton的时候,如何避免使用了selected属性之后,button出现蓝色背景
正常的创建方式[UIButton buttonWithType:UIButtonTypeSystem];
这种创建方式就会导致以上说的情况出现
那么重点了来了[UIButton buttonWithType:UIButtonTypeCustom];
就不会有蓝色背景出现了,就这么简单.
正常的创建方式[UIButton buttonWithType:UIButtonTypeSystem];
这种创建方式就会导致以上说的情况出现
那么重点了来了[UIButton buttonWithType:UIButtonTypeCustom];
就不会有蓝色背景出现了,就这么简单.