Sign in

iOS Team / CNLiveRDSDKDemo · Files

GitLab

  • Back to group
  • Project
  • Activity
  • Files
  • Commits
  • Network
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Labels
  • Wiki
  • CNLiveRDSDKDemo
  • CNLiveRDVESDKDemo
  • UIButton+Block.h
  • no message
    c2d53978
    朱林 authored
    2017-12-01 13:28:33 +0800  
    Browse Code »
UIButton+Block.h 314 Bytes
Edit Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
//
//  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