// // TUIFriendProfileHeaderView_Minimalist.h // TUIContact // // Created by wyl on 2022/12/14. // Copyright © 2023 Tencent. All rights reserved. // #import NS_ASSUME_NONNULL_BEGIN @interface TUIFriendProfileHeaderItemView : UIView @property(nonatomic, strong) UIImageView *iconView; @property(nonatomic, strong) UILabel *textLabel; @property(nonatomic, copy) void (^messageBtnClickBlock)(void); @end @interface TUIFriendProfileHeaderView_Minimalist : UIView @property(nonatomic, strong) UIImageView *headImg; @property(nonatomic, strong) UILabel *descriptionLabel; @property(nonatomic, strong) UIView *functionListView; - (void)setItemViewList:(NSArray *)itemList; @end NS_ASSUME_NONNULL_END