Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用下面的代码来获得按钮标题标签的阴影。
theCuLabel.titleLabel.shadowColor=[UIColor blackColor]; theCuLabel.titleLabel.shadowOffset=CGSizeMake(-3.0,2.5);
在 IOS 6 中,它可以正常工作,如下所示
但在 IOS 7 中,它无法按预期工作,如下所示
我没有找到解决方案,谁能告诉我解决方案或 IOS 7 中为此发生的任何更新。
提前致谢...
[button setTitleShadowColor:[UIColor blackColor] forState:UIControlStateNormal];
这是为 UIButton 设置阴影颜色的正确方法。我已经尝试过了,并且正在所有版本中工作。