【发布时间】:2014-12-11 09:11:11
【问题描述】:
问题
UIBUtton 的标题标签上有一个小边框,UILabels 没有。
[self.button setTitle:@"border" forState:UIControlStateNormal] ;
[self.button setTitleColor:[UIColor yellowColor] forState:UIControlStateNormal] ;
self.label.text = @"no borders!"
self.label.textColor = [UIColor yellowColor] ;
因为这个边框,浅色的UIButtons 看起来很“脏”。
它是什么以及如何删除它?
图片
【问题讨论】:
-
也许那些边框是阴影。
myButton.layer.shadowOpacity = 0;有帮助吗?
标签: ios objective-c uibutton uilabel