You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
441 B
25 lines
441 B
// |
|
// SelectContactCollectionViewCell.h |
|
// LekangGuard |
|
// |
|
// Created by ecell on 2022/10/13. |
|
// |
|
|
|
#import <UIKit/UIKit.h> |
|
|
|
NS_ASSUME_NONNULL_BEGIN |
|
|
|
@interface SelectContactCollectionViewCell : UICollectionViewCell |
|
|
|
/// 头像 |
|
@property (nonatomic ,strong) NSString *iconImgName; |
|
|
|
/// 昵称 |
|
@property (nonatomic ,strong) NSString *nameStr; |
|
|
|
/// 设备类型 |
|
@property (nonatomic ,assign) NSInteger deviceType; |
|
|
|
@end |
|
|
|
NS_ASSUME_NONNULL_END
|
|
|