// // AvatarView.h // Youth // // Created by mambaxie on 2022/1/2. // #import #import "User.h" NS_ASSUME_NONNULL_BEGIN @interface AvatarView : PYImageView + (instancetype)avatarWithUser:(User *)user; @property (nonatomic, strong) User *user; @property (nonatomic, strong) void(^didClick)(void); - (void)setVIPTagImageURL:(NSString *)vipTagURL; @end NS_ASSUME_NONNULL_END