28 lines
725 B
Objective-C
28 lines
725 B
Objective-C
//
|
|
// XPMineUserInfoEditTableViewCell.h
|
|
// xplan-ios
|
|
//
|
|
// Created by 冯硕 on 2021/9/23.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
#import "XPSoundCardModel.h"
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
@class XPMineUserInfoEditModel;
|
|
@interface XPMineUserInfoEditTableViewCell : UITableViewCell
|
|
///数据
|
|
@property (nonatomic,strong) XPMineUserInfoEditModel *itemModel;
|
|
@property (nonatomic,strong) XPSoundCardModel *soundModel;
|
|
@property (nonatomic,strong) NSMutableArray *itemList;
|
|
@property (nonatomic,assign) CGFloat maxWidth;
|
|
|
|
@property (nonatomic, assign) BOOL isCPAvatarDisplay;
|
|
@property (nonatomic, assign) BOOL isCPAnimationDisplay;
|
|
|
|
@property (nonatomic, copy) void(^changeCPSwitch)(BOOL isOn, NSInteger type);
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|