Remove underline on UIButton in iOS 7

前端 未结 9 2275
北海茫月
北海茫月 2020-12-10 14:26

Any one know how to remove the UIButton underline that appears because of Accessibility?

(I know it\'s because the user turned on \"Button Shapes\")

9条回答
  •  时光取名叫无心
    2020-12-10 14:58

    Set background image to the button.

    [yourBtnHere setBackgroundImage:[[UIImage alloc] init] forState:UIControlStateNormal];
    

提交回复
热议问题