作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我将UIButton子类化,以为UIButtons创建自定义渐变背景。
UIButton已正确连接,并且可以正常工作。
但是,当我尝试添加红色阴影时,它会添加,但始终是灰色的。它忽略了我的.shadowColor语句。这里是相关代码。
@implementation CustomUIButton
...
-(void)awakeFromNib
{
...
[self titleLabel].shadowColor = [UIColor redColor];
[self titleLabel].shadowOffset = CGSizeMake(1.0, 1.0);
...
}
...
最佳答案
UIButton
实例需要知道要设置颜色的控件状态。请尝试以下方法。
[self setTitleShadowColor:[UIColor redColor] forState:UIControlStateNormal];
关于iphone - 带有CustomUIButton的.shadowColor问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7447331/
我是一名优秀的程序员,十分优秀!