HeaderBackImgView.h 431 B

123456789101112131415161718192021
  1. //
  2. // HeaderBackImgView.h
  3. // YBVideo
  4. //
  5. // Created by ybRRR on 2021/12/22.
  6. // Copyright © 2021 cat. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. typedef void(^headImgEvent)(NSString *types);
  10. @interface HeaderBackImgView : UIView
  11. {
  12. UIImageView *_headImgView;
  13. }
  14. @property (nonatomic,copy)headImgEvent tapEvent;
  15. -(instancetype)initWithFrame:(CGRect)frame andHeadUrl:(NSString *)urls andUerid:(NSString *)userID;
  16. @end