PracticeExamCell.h 468 B

1234567891011121314151617181920212223
  1. //
  2. // PracticeExamCell.h
  3. // jiaPei
  4. //
  5. // Created by 张嵘 on 2019/8/27.
  6. // Copyright © 2019 JCZ. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. /**
  10. * 弱指针
  11. */
  12. #define WeakSelf(weakSelf) __weak __typeof(&*self)weakSelf = self;
  13. NS_ASSUME_NONNULL_BEGIN
  14. @class AnswerItem;
  15. @interface PracticeExamCell : UITableViewCell
  16. @property (nonatomic, strong) AnswerItem *item;
  17. + (instancetype)cellWithTableView:(UITableView *)tablView;
  18. @end
  19. NS_ASSUME_NONNULL_END