123456789101112131415161718192021 |
- //
- // CYActiveTieleTableViewCell.h
- // shiku_im
- //
- // Created by Ron on 2019/11/14.
- // Copyright © 2019 Reese. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface CYActiveTieleTableViewCell : UITableViewCell
- @property (nonatomic, strong) UIImageView *imageV;
- @property (nonatomic, strong) UILabel *title;
- @property (nonatomic, strong) UILabel *subtitle;
- @property (nonatomic, strong) NSString *subtitleText;
- @end
- NS_ASSUME_NONNULL_END
|