LRGlowingButton 0.2

LRGlowingButton 0.2

测试已测试
语言语言 Obj-CObjective C
许可证 MIT
发布最新版本2014年12月

未申请 维护。



  • 作者
  • Nikita Lutsenko

LRGlowingButton 是 UIButton 的一个子类,它具有内置的自定义发光效果。

安装

注意:如果您的项目使用 ARC:您必须在目标设置 > 编译 phases > 编译 sources 中将编译器标志 -fno-objc-arc 添加到 LRGlowingButton.m

  • LRGlowingButton.hLRGlowingButton.m 文件夹拖放到您的项目中。
  • QuartzCore 框架添加到您的项目中。

使用

在 simplest 形式中,这是创建一个 LRGlowingButton 实例的方式

LRGlowingButton *button = [LRGlowingButton buttonWithType:UIButtonTypeCustom];
button.glowsWhenHighlighted = YES;
button.highlightedGlowColor = [UIColor whiteColor];
[self.view addSubview:button];