Files
peko-ios/YuMi/Modules/YMMine/View/Cell/XPMinePersonalCenterCell.h
2023-07-14 18:50:55 +08:00

29 lines
687 B
Objective-C
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

//
// 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