YOUPAILZAvatarView.h 807 B

123456789101112131415161718192021222324252627282930
  1. //
  2. // YOUPAILZAvatarView.h
  3. // VQU
  4. //
  5. // Created by CY on 2021/8/17.
  6. // Copyright © 2021 leo. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface YOUPAILZAvatarView : UIView
  11. @property (nonatomic,weak,readonly)UIImageView *youpaipavatarImgV;
  12. /// 头像url
  13. @property (nonatomic, strong) NSURL *youpaipavatarURL;
  14. /// 头像框url
  15. @property (nonatomic, strong) NSURL *youpaippersonalityBoxURL;
  16. /// 初始化头像框
  17. /// @param avatarURL 头像url
  18. /// @param personalityBoxURL 头像框url
  19. + (instancetype)youpaifavatarViewWithFrame:(CGRect)frame avatarURL:(NSURL *)avatarURL personalityBoxURL:(NSURL *)personalityBoxURL;
  20. - (instancetype)initWithFrame:(CGRect)frame avatarURL:(NSURL *)avatarURL personalityBoxURL:(NSURL *)personalityBoxURL;
  21. @end
  22. NS_ASSUME_NONNULL_END