// // YOUPAILZAvatarView.h // VQU // // Created by CY on 2021/8/17. // Copyright © 2021 leo. All rights reserved. // #import NS_ASSUME_NONNULL_BEGIN @interface YOUPAILZAvatarView : UIView @property (nonatomic,weak,readonly)UIImageView *youpaipavatarImgV; /// 头像url @property (nonatomic, strong) NSURL *youpaipavatarURL; /// 头像框url @property (nonatomic, strong) NSURL *youpaippersonalityBoxURL; /// 初始化头像框 /// @param avatarURL 头像url /// @param personalityBoxURL 头像框url + (instancetype)youpaifavatarViewWithFrame:(CGRect)frame avatarURL:(NSURL *)avatarURL personalityBoxURL:(NSURL *)personalityBoxURL; - (instancetype)initWithFrame:(CGRect)frame avatarURL:(NSURL *)avatarURL personalityBoxURL:(NSURL *)personalityBoxURL; @end NS_ASSUME_NONNULL_END