hello to all I would like to binding this object-control, but it is the first time and I have some problem can you help me? I have no problems with the properties and voids "simple" but the other I do not know how to do thanks Cris
this is a .h file
import <UIKit/UIKit.h>
typedef NS_ENUM(NSUInteger, KGModalBackgroundDisplayStyle){ KGModalBackgroundDisplayStyleGradient, KGModalBackgroundDisplayStyleSolid };
@interface KGModal : NSObject
@property (nonatomic) BOOL tapOutsideToDismiss;
@property (strong, nonatomic) UIColor *modalBackgroundColor;
@property (nonatomic) KGModalBackgroundDisplayStyle backgroundDisplayStyle;
(instancetype)sharedInstance;
(void)showWithContentView:(UIView *)contentView;
(void)showWithContentView:(UIView *)contentView andAnimated:(BOOL)animated;
(void)showWithContentViewController:(UIViewController *)contentViewController;
(void)showWithContentViewController:(UIViewController *)contentViewController andAnimated:(BOOL)animated;
(void)hideWithCompletionBlock:(void(^)())completion;
(void)hideAnimated:(BOOL)animated withCompletionBlock:(void(^)())completion;