40 lines
1017 B
Objective-C
40 lines
1017 B
Objective-C
//
|
|
// QXSignInAppView.h
|
|
// QXLive
|
|
//
|
|
// Created by 启星 on 2025/12/11.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface QXSignInAppView : UIView
|
|
@property (nonatomic,copy)void(^cancelBlock)(void);
|
|
-(void)showInView:(UIView *)view;
|
|
|
|
-(void)hide;
|
|
|
|
@end
|
|
|
|
@interface QXSignInAppSubView : UIView
|
|
@property (nonatomic,strong)UIImageView *bgImageView;
|
|
@property (nonatomic,strong)UILabel *dayLabel;
|
|
@property (nonatomic,strong)UILabel *dayTitleLabel;
|
|
@property (nonatomic,strong)UIImageView *statusImageView;
|
|
@property (nonatomic,strong)UIImageView *giftImageView;
|
|
@property (nonatomic,strong)UILabel *giftNameLabel;
|
|
@property (nonatomic,strong)QXSignAppModel *model;
|
|
@end
|
|
|
|
|
|
@interface QXSignInAppResultView : UIView
|
|
@property (nonatomic,strong)UIImageView *giftImageView;
|
|
@property (nonatomic,strong)UILabel *giftNameLabel;
|
|
@property (nonatomic,strong)QXSignAppModel *model;
|
|
@property (nonatomic,strong)UIButton *happyBtn;
|
|
@property (nonatomic,copy)void(^happyBlock)(void);
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|