Files
midi_ios/TUIKit/TUIContact/BaseCell/CellUI/TUICommonContactCell.h

30 lines
671 B
C
Raw Normal View History

2025-08-14 10:07:49 +08:00
//
// TUICommonContactCell.h
//
//
// Created by Tencent on 2023/06/09.
// Copyright © 2023 Tencent. All rights reserved.
#import <TIMCommon/TIMCommonModel.h>
#import <TIMCommon/TIMDefine.h>
#import <UIKit/UIKit.h>
#import "TUICommonContactCellData.h"
NS_ASSUME_NONNULL_BEGIN
@interface TUICommonContactCell : TUICommonTableViewCell
@property UIImageView *avatarView;
@property UILabel *titleLabel;
// The icon of indicating the user's online status
@property(nonatomic, strong) UIImageView *onlineStatusIcon;
@property(readonly) TUICommonContactCellData *contactData;
- (void)fillWithData:(TUICommonContactCellData *)contactData;
@end
NS_ASSUME_NONNULL_END