27 lines
746 B
Objective-C
27 lines
746 B
Objective-C
//
|
|
// LMSignInAlertCollectionViewCell.h
|
|
// SweetParty
|
|
//
|
|
// Created by Xmac on 2024/8/30.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
#import "LMSingListModel.h"
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
static NSString *LMSignInAlertCollectionViewCellID = @"LMSignInAlertCollectionViewCellID";
|
|
@interface LMSignInAlertCollectionViewCell : UICollectionViewCell
|
|
|
|
@property (weak, nonatomic) IBOutlet UILabel *coinLabel;
|
|
@property (weak, nonatomic) IBOutlet UILabel *dayLabel;
|
|
@property (weak, nonatomic) IBOutlet UIView *signsCover;
|
|
@property (weak, nonatomic) IBOutlet UIView *baseCover;
|
|
@property (weak, nonatomic) IBOutlet UIImageView *bgImg;
|
|
|
|
@property (nonatomic, strong) LMSingListModel *model;
|
|
@property (nonatomic, assign) NSInteger index;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|