TestsTested | ✗ |
LangLanguage | Obj-CObjective C |
License | MIT |
ReleasedLast Release | Jun 2015 |
Maintained by Mohamed Afifi.
A custom and simple UIButton subclass that glows when the user is touching down over the button.
Alternatively, you can create it from code just as you create a normal UIButton:
VAGlowingButton *button = [VAGlowingButton buttonWithType:UIButtonTypeCustom];
[button setTitle:@"Glowing" forState:UIControlStateNormal];
[button setTitleColor:[UIColor yellowColor] forState:UIControlStateNormal];
button.glowColor = [UIColor yellowColor];
glowColor Setting it to nil makes the button behave as normal UIButton.
enableDefaultHighlighting When set to false, the default UIButton highlighting behavior becomes disabled. Default value is false. It only works if there is a glow color set to non-nil value.
Normal
Custom UIButton
System UIButton
VAGlowingButton is available through CocoaPods. To install it, simply add the following line to your Podfile:
pod "VAGlowingButton"
Mohamed Afifi, mohamede1945
VAGlowingButton is available under the MIT license. See the LICENSE file for more info.