29 lines
687 B
Objective-C
29 lines
687 B
Objective-C
//
|
||
// XPMinePersonalCenterCell.h
|
||
// YuMi
|
||
//
|
||
// Created by YuMi on 2023/6/30.
|
||
//
|
||
|
||
#import <UIKit/UIKit.h>
|
||
|
||
NS_ASSUME_NONNULL_BEGIN
|
||
typedef void (^XPMinePersonalCenterCellAction)(int type);//type,0,我的房间,1,收益记录,2,转赠钻石
|
||
|
||
@interface XPMinePersonalCenterCell : UITableViewCell
|
||
@property(nonatomic,copy)XPMinePersonalCenterCellAction clickAction;
|
||
///是否有转赠钻石
|
||
@property (nonatomic,assign) BOOL isHaveGiveDiamond;
|
||
@end
|
||
|
||
|
||
|
||
@interface XPMinePersonalCenterItemView : UIView
|
||
///是否有转赠钻石
|
||
@property (nonatomic,assign) BOOL isHaveGiveDiamond;
|
||
-(void)setTitle:(NSString *)title;
|
||
-(void)setImage:(NSString *)imageName;
|
||
@end
|
||
|
||
NS_ASSUME_NONNULL_END
|