Skip to content

lightroomapps/LRGlowingButton

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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

About

Subclass of UIButton with custom glow color.

Resources

License

Stars

Watchers

Forks

Packages

No packages published