增加换肤功能
This commit is contained in:
@@ -0,0 +1,37 @@
|
||||
//
|
||||
// TUIContactCommonSwitchCell.h
|
||||
// TXIMSDK_TUIKit_iOS
|
||||
//
|
||||
// Created by annidyfeng on 2019/5/10.
|
||||
// Copyright © 2023 Tencent. All rights reserved.
|
||||
//
|
||||
|
||||
#import <TIMCommon/TIMCommonModel.h>
|
||||
#import <TIMCommon/TIMDefine.h>
|
||||
#import <UIKit/UIKit.h>
|
||||
|
||||
NS_ASSUME_NONNULL_BEGIN
|
||||
|
||||
@interface TUICommonContactSwitchCellData : TUICommonCellData
|
||||
|
||||
@property NSString *title;
|
||||
@property NSString *desc;
|
||||
@property(getter=isOn) BOOL on;
|
||||
@property CGFloat margin;
|
||||
@property SEL cswitchSelector;
|
||||
|
||||
@end
|
||||
|
||||
@interface TUICommonContactSwitchCell : TUICommonTableViewCell
|
||||
|
||||
@property UILabel *titleLabel; // main title label
|
||||
@property UILabel *descLabel; // detail title label below the main title label, used for explaining details
|
||||
@property UISwitch *switcher;
|
||||
|
||||
@property(readonly) TUICommonContactSwitchCellData *switchData;
|
||||
|
||||
- (void)fillWithData:(TUICommonContactSwitchCellData *)data;
|
||||
|
||||
@end
|
||||
|
||||
NS_ASSUME_NONNULL_END
|
||||
Reference in New Issue
Block a user