UIButton+Block.h
314 Bytes
//
// UIButton+Block.h
// CNLiveRDVESDKDemo
//
// Created by iOS on 2017/11/28.
// Copyright © 2017年 zhulin. All rights reserved.
//
#import <UIKit/UIKit.h>
@interface UIButton (Block)
@property (nonatomic,copy) void(^block)(UIButton *sender);
-(void) addTapBlock:(void(^)(UIButton * btn) )block;
@end