// // PracticeExamCell.h // jiaPei // // Created by 张嵘 on 2019/8/27. // Copyright © 2019 JCZ. All rights reserved. // #import /** * 弱指针 */ #define WeakSelf(weakSelf) __weak __typeof(&*self)weakSelf = self; NS_ASSUME_NONNULL_BEGIN @class AnswerItem; @interface PracticeExamCell : UITableViewCell @property (nonatomic, strong) AnswerItem *item; + (instancetype)cellWithTableView:(UITableView *)tablView; @end NS_ASSUME_NONNULL_END