SetCell.h 873 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. //
  2. // SetCell.h
  3. // UniversalApp
  4. //
  5. // Created by bogokj on 2019/8/5.
  6. // Copyright © 2019 voidcat. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. typedef NS_ENUM(NSInteger, SetCellType) {
  11. SetCellTypeSet,
  12. SetCellTypeRoom,
  13. SetCellTypeRoomSet
  14. };
  15. @interface SetCell : UITableViewCell
  16. @property(nonatomic, copy) NSString *leftTitle;
  17. @property(nonatomic, copy) NSString *rightTitle;
  18. @property (weak, nonatomic) IBOutlet UIImageView *rightImageView;
  19. @property (weak, nonatomic) IBOutlet UIButton *nextBtn;
  20. @property (weak, nonatomic) IBOutlet UIImageView *middleImageView;
  21. @property(nonatomic, assign) SetCellType type;
  22. //默认 16
  23. @property(nonatomic, assign) NSInteger leftFont;
  24. //默认 13
  25. @property(nonatomic, assign) NSInteger rightFont;
  26. @property(nonatomic, assign) NSInteger leftMediumFont;
  27. @end
  28. NS_ASSUME_NONNULL_END