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.
26 lines
522 B
26 lines
522 B
// |
|
// AddVideoMomberCell.h |
|
// watch |
|
// |
|
// Created by Apple on 2019/1/25. |
|
// Copyright © 2019年 xTT. All rights reserved. |
|
// |
|
|
|
#import "TableCell.h" |
|
#import "VideoUserModel.h" |
|
|
|
NS_ASSUME_NONNULL_BEGIN |
|
|
|
@interface AddVideoMomberCell : baseCell |
|
|
|
@property (weak, nonatomic) IBOutlet UIImageView *selectImageView; |
|
|
|
@property (weak, nonatomic) IBOutlet UIImageView *memberHeadView; |
|
|
|
@property (weak, nonatomic) IBOutlet UILabel *relationshipNameLabel; |
|
|
|
-(void)setModel:(VideoUserModel*)model; |
|
|
|
@end |
|
|
|
NS_ASSUME_NONNULL_END
|
|
|