26 lines
573 B
C
26 lines
573 B
C
|
|
//
|
||
|
|
// TUIFindContactCell.h
|
||
|
|
// TUIContact
|
||
|
|
//
|
||
|
|
// Created by harvy on 2021/12/13.
|
||
|
|
// Copyright © 2023 Tencent. All rights reserved.
|
||
|
|
//
|
||
|
|
|
||
|
|
#import <UIKit/UIKit.h>
|
||
|
|
#import "TUIFindContactCellModel.h"
|
||
|
|
|
||
|
|
NS_ASSUME_NONNULL_BEGIN
|
||
|
|
|
||
|
|
@interface TUIFindContactCell : UITableViewCell
|
||
|
|
|
||
|
|
@property(nonatomic, strong) UIImageView *avatarView;
|
||
|
|
@property(nonatomic, strong) UILabel *mainTitleLabel;
|
||
|
|
@property(nonatomic, strong) UILabel *subTitleLabel;
|
||
|
|
@property(nonatomic, strong) UILabel *descLabel;
|
||
|
|
|
||
|
|
@property(nonatomic, strong) TUIFindContactCellModel *data;
|
||
|
|
|
||
|
|
@end
|
||
|
|
|
||
|
|
NS_ASSUME_NONNULL_END
|