ASSettingListCell.h 423 B

12345678910111213141516171819202122
  1. //
  2. // ASSettingListCell.h
  3. // Asteria
  4. //
  5. // Created by iOS on 2023/7/5.
  6. //
  7. #import <UIKit/UIKit.h>
  8. #import "KWSwitchButton.h"
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface ASSettingListCell : UITableViewCell
  11. @property (nonatomic, strong) KWSwitchButton *switchBtn;
  12. @property (nonatomic, strong) UIImageView *moreIcon;
  13. - (void)setTitle:(NSString *)title points:(NSString *)points enable:(BOOL)flag;
  14. @end
  15. NS_ASSUME_NONNULL_END