LDGradientButton 0.0.5

LDGradientButton 0.0.5

TestsTested
LangLanguage Obj-CObjective C
License MIT
ReleasedLast Release Dec 2014

Maintained by Unclaimed.



  • By
  • Christian Di Lorenzo

Support Notice

Because of recent Apple anouncements that will remove skeumorphism, LDGradientButton will not be supported in iOS 7. As a replacement, I would recommend looking into live blur buttons which seem to be the new way of iOS. Thank you for your interest.

LDGradientButton

LDGradientButton is meant to be a replacement for the Apple stock UIButton. It can easily be created either programmatically or with the Storyboard. It also supports the UIAppearence protocol for setting the tint color.

Installation

Manually

Download the zip of the project and put the "LDGradientButton" folder in your project. Then simply import "LDGradientButton.h" in the file(s) you would like to use it in.

Contributions

If you have any ideas for improvements or bug fixes, please submit an issue or fork the repository to contribute. Otherwise, please send any other great ideas to [email protected].

Examples

Button With Specific Tint Color

LDGradientButton *gradientButton = [[LDGradientButton alloc] initWithFrame:CGRectMake(0, 0, 200, 100)];
gradientButton.tintColor = [UIColor orangeColor];

[self.view addSubview:gradientButton];

Button With Specific Colors

LDGradientButton *gradientButton = [[LDGradientButton alloc] initWithFrame:CGRectMake(0, 0, 150, 50)];
gradientButton.title = @"Example Button";
gradientButton.normalTextColor = [UIColor blackColor];
gradientButton.highlightTextColor = [UIColor grayColor];
gradientButton.topColor = [UIColor colorWithRed:0.98f green:0.98f blue:0.98f alpha:1.00f];
gradientButton.bottomColor = [UIColor colorWithRed:0.87f green:0.87f blue:0.87f alpha:1.00f];
gradientButton.borderColor = [UIColor blackColor];

[self.view addSubview:gradientButton];

Customization

UIAppearence

LDGradientButton supports setting a global tint color default for all of the LDGradientButtons in an entire app.

[[LDGradientButton appearance] setTintColor:[UIColor redColor]];

Properties

Here are the properties that you can set on each LDGradientButton:

  • title
  • tintColor (recalculates border color and button gradient)
  • borderColor
  • topColor & bottomColor (used to calculate the normal and highlight gradient)
  • normalTextColor & highlightTextColor

License (MIT)

Copyright (C) 2013 Christian Di Lorenzo [email protected]

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.