Today's Menu  Portugal
journal and plan nutrition
Y5GradientButton.h
Go to the documentation of this file.
1 //
2 // Y5GradientButton.h
3 // TodaysMenu
4 //
5 // Created by Don Zeek on 12/30/18.
6 // Copyright © 2018 net.dzeek.y2015.ios.portfolio. All rights reserved.
7 //
8 
9 #import <UIKit/UIKit.h>
10 
11 NS_ASSUME_NONNULL_BEGIN
12 
13 @protocol Y5GradientButtonProtocol <NSObject>
14 - (void) onButtonClick;
15 @end
16 
17 @interface Y5GradientButton : UIButton
18 
19 - (instancetype) initWithFrame:(CGRect)frame andDelegate:(id<Y5GradientButtonProtocol>)delegate;
20 
21 @end
22 
23 NS_ASSUME_NONNULL_END