| 12345678910111213141516171819 |
- //
- // ChatSettingCell.h
- // AIIM
- //
- // Created by qitewei on 2025/5/22.
- //
- #import <UIKit/UIKit.h>
- #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
|