1234567891011121314151617181920 |
- //
- // ArticleImageCell.h
- // smartRhino
- //
- // Created by 潘洪波 on 2019/11/18.
- // Copyright © 2019 tederen. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface ArticleImageCell : UITableViewCell
- @property (weak, nonatomic) IBOutlet UIImageView *imgView;
- @property (weak, nonatomic) IBOutlet UILabel *imgTitleLab;
- @end
- NS_ASSUME_NONNULL_END
|