UIButton+Glossy.h 395 B

1234567891011
  1. #import <UIKit/UIKit.h>
  2. @interface UIButton (Glossy)
  3. + (void)setPathToRoundedRect:(CGRect)rect forInset:(NSUInteger)inset inContext:(CGContextRef)context;
  4. + (void)drawGlossyRect:(CGRect)rect withColor:(UIColor*)color inContext:(CGContextRef)context;
  5. + (void)setBackgroundToGlossyButton:(UIButton*)button forColor:(UIColor*)color withBorder:(BOOL)border forState:(UIControlState)state;
  6. @end