1234567891011121314151617181920212223 |
- //
- // PracticeExamCell.h
- // jiaPei
- //
- // Created by 张嵘 on 2019/8/27.
- // Copyright © 2019 JCZ. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- /**
- * 弱指针
- */
- #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
|