26 lines
399 B
Objective-C
26 lines
399 B
Objective-C
//
|
|
// 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
|