Uibutton titlelabel shadowoffset属性在ios 7中表现不正常

时间:2013-10-02 17:04:56

标签: ios ipad uibutton ios7 shadow

我使用以下代码获取按钮标题标签的阴影。

theCuLabel.titleLabel.shadowColor=[UIColor blackColor];
theCuLabel.titleLabel.shadowOffset=CGSizeMake(-3.0,2.5);

在IOS 6中,它的工作正常如下

但是在IOS 7中它没有按预期工作,如下所示

我没有找到解决方案,任何人都可以告诉我解决方案或IOS 7中发生的任何更新。

提前致谢...

1 个答案:

答案 0 :(得分:2)

[button setTitleShadowColor:[UIColor blackColor] forState:UIControlStateNormal];

这是为UIButton设置阴影颜色的正确方法。 我试过这个并且正在使用所有版本。

相关问题