/LRGlowingButton

Subclass of UIButton with custom glow color.

Primary LanguageObjective-CMIT LicenseMIT

LRGlowingButton

LRGlowingButton is a subclass of UIButton which has custom glow built-in.

Installation

Important note if your project uses ARC: you must add the -fno-objc-arc compiler flag to LRGlowingButton.m in Target Settings > Build Phases > Compile Sources.

  • Drag the LRGlowingButton.h, LRGlowingButton.m folder into your project.
  • Add the QuartzCore framework to your project.

Usage

In its simplest form, this is how you create an LRGlowingButton instance:

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

Result

     Example White      Example Red