| 123456789101112131415161718192021 |
- //
- // HeaderBackImgView.h
- // YBVideo
- //
- // Created by ybRRR on 2021/12/22.
- // Copyright © 2021 cat. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- typedef void(^headImgEvent)(NSString *types);
- @interface HeaderBackImgView : UIView
- {
- UIImageView *_headImgView;
- }
- @property (nonatomic,copy)headImgEvent tapEvent;
- -(instancetype)initWithFrame:(CGRect)frame andHeadUrl:(NSString *)urls andUerid:(NSString *)userID;
- @end
|