PNGradientView/Pod/Classes/PNGradientView.h
Giuseppe Nucifora 07e9807316 - add method - (void) setBackgroundLayerWithColors:(NSArray *) colors startPoint:(CGPoint) startPoint angle:(CGFloat) angle
- add method - (void) setBackgroundLayerWithColors:(NSArray *) colors startPoint:(CGPoint) startPoint endPoint:(CGPoint) endPoint
2018-03-21 19:56:43 +01:00

20 lines
478 B
Objective-C

//
// PNGradientView.h
// Pods
//
// Created by Giuseppe Nucifora on 12/01/16.
//
//
#import <UIKit/UIKit.h>
@interface PNGradientView : UIView
- (void) setBackgroundLayerWithColors:(NSArray *) colors startPoint:(CGPoint) startPoint;
- (void) setBackgroundLayerWithColors:(NSArray *) colors startPoint:(CGPoint) startPoint angle:(CGFloat) angle;
- (void) setBackgroundLayerWithColors:(NSArray *) colors startPoint:(CGPoint) startPoint endPoint:(CGPoint) endPoint;
@end