// // ChatSettingCell.h // AIIM // // Created by qitewei on 2025/5/22. // #import #import "CustomSwitch.h" NS_ASSUME_NONNULL_BEGIN @interface ChatSettingCell : UITableViewCell @property (nonatomic, strong) UILabel * titleLbl; @property (nonatomic, strong) CustomSwitch * stateSwitch; @property (nonatomic,copy) void(^stateSwitchChangeValue)(BOOL isOn); @end NS_ASSUME_NONNULL_END