Files
featherVoice/TUIKit/TUIContact/UI_Minimalist/UI/TUIFriendProfileHeaderView_Minimalist.h

28 lines
754 B
C
Raw Normal View History

2025-08-08 10:49:36 +08:00
//
// TUIFriendProfileHeaderView_Minimalist.h
// TUIContact
//
// Created by wyl on 2022/12/14.
// Copyright © 2023 Tencent. All rights reserved.
//
#import <UIKit/UIKit.h>
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<TUIFriendProfileHeaderItemView *> *)itemList;
@end
NS_ASSUME_NONNULL_END