| 1234567891011121314151617181920 |
- //
- // videoTopicCell.h
- // YBVideo
- //
- // Created by IOS1 on 2019/7/2.
- // Copyright © 2019 cat. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface videoTopicCell : UITableViewCell
- @property (weak, nonatomic) IBOutlet UILabel *topicTitleL;
- @property (weak, nonatomic) IBOutlet UIImageView *imgView;
- @end
- NS_ASSUME_NONNULL_END
|