MyFeedCell.h
353 字节
#import <UIKit/UIKit.h>
#import "MyFeedModel.h"
#import "UITableViewCell+CardRadius.h"
NS_ASSUME_NONNULL_BEGIN
static NSString *const cardRadiusCellIdentifier = @"cardRadiusCellIdentifier";
@interface MyFeedCell : UITableViewCell
@property (nonatomic, strong) MyFeedModel *model;
- (void)updateUI:(MyFeedModel *)model;
@end
NS_ASSUME_NONNULL_END