| 1234567891011121314151617181920212223 |
- //
- // EditHeader.h
- // YBVideo
- //
- // Created by YunBao on 2018/6/14.
- // Copyright © 2018年 cat. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- typedef void (^IconBlock)(id event);
- @interface EditHeader : UIView
- @property(nonatomic,copy)IconBlock event;
- @property (weak, nonatomic) IBOutlet UIImageView *iconIV;
- @property (weak, nonatomic) IBOutlet UIButton *iconBtn;
- @property (weak, nonatomic) IBOutlet UILabel *desLL;
- - (IBAction)clickIconBtn:(UIButton *)sender;
- @end
|