cdts/xdts-ios 3/TreeHole/Code/Features/Chat/View/AvatarView.h

26 lines
399 B
C
Raw Normal View History

2023-07-27 09:20:00 +08:00
//
// AvatarView.h
// Youth
//
// Created by mambaxie on 2022/1/2.
//
#import <UIKit/UIKit.h>
#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