我想创建一个内部发光的矩形圆角按钮。我听到了一些关于添加子视图的建议,但我担心子视图会覆盖我按钮中的文本。
如何在不阻挡文字或背景图标图像的情况下实现内部发光?
答案 0 :(得分:0)
制作您想要的图像,然后将其导入您的项目。将按钮的类型设置为自定义,然后将图像设置为您制作的发光图像。
答案 1 :(得分:0)
你可以这样做(它不是按钮上的发光,而是按钮的标签上)。效果非常相似。 第一
#import <QuartzCore/QuartzCore.h>
然后
UIColor *color = button.currentTitleColor;
theButton.titleLabel.layer.shadowColor = [color CGColor];
theButton.titleLabel.layer.shadowRadius = 4.0f;
theButton.titleLabel.layer.shadowOpacity = .9;
theButton.titleLabel.layer.shadowOffset = CGSizeZero;
theButton.titleLabel.layer.masksToBounds = NO;