12345678910111213141516171819202122 |
- //
- // ASSettingListCell.h
- // Asteria
- //
- // Created by iOS on 2023/7/5.
- //
- #import <UIKit/UIKit.h>
- #import "KWSwitchButton.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface ASSettingListCell : UITableViewCell
- @property (nonatomic, strong) KWSwitchButton *switchBtn;
- @property (nonatomic, strong) UIImageView *moreIcon;
- - (void)setTitle:(NSString *)title points:(NSString *)points enable:(BOOL)flag;
- @end
- NS_ASSUME_NONNULL_END
|