- 在使用UIButton的時(shí)候,如何避免使用了selected屬性之后,button出現(xiàn)藍(lán)色背景
正常的創(chuàng)建方式[UIButton buttonWithType:UIButtonTypeSystem];
這種創(chuàng)建方式就會(huì)導(dǎo)致以上說的情況出現(xiàn)
那么重點(diǎn)了來了[UIButton buttonWithType:UIButtonTypeCustom];
就不會(huì)有藍(lán)色背景出現(xiàn)了,就這么簡(jiǎn)單.