ChatSettingCell.h 403 B

12345678910111213141516171819
  1. //
  2. // ChatSettingCell.h
  3. // AIIM
  4. //
  5. // Created by qitewei on 2025/5/22.
  6. //
  7. #import <UIKit/UIKit.h>
  8. #import "CustomSwitch.h"
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface ChatSettingCell : UITableViewCell
  11. @property (nonatomic, strong) UILabel * titleLbl;
  12. @property (nonatomic, strong) CustomSwitch * stateSwitch;
  13. @property (nonatomic,copy) void(^stateSwitchChangeValue)(BOOL isOn);
  14. @end
  15. NS_ASSUME_NONNULL_END