LRGlowingButton 是 UIButton 的一个子类,它具有内置的自定义发光效果。
注意:如果您的项目使用 ARC:您必须在目标设置 > 编译 phases > 编译 sources 中将编译器标志 -fno-objc-arc
添加到 LRGlowingButton.m
。
LRGlowingButton.h
、LRGlowingButton.m
文件夹拖放到您的项目中。在 simplest 形式中,这是创建一个 LRGlowingButton 实例的方式
LRGlowingButton *button = [LRGlowingButton buttonWithType:UIButtonTypeCustom];
button.glowsWhenHighlighted = YES;
button.highlightedGlowColor = [UIColor whiteColor];
[self.view addSubview:button];