CardCollectionViewCell.h 1.04 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
//
//  CardCollectionViewCell.h
//  Lighting
//
//  Created by 曹云霄 on 2016/10/19.
//  Copyright © 2016年 上海勾芒科技有限公司. All rights reserved.
//

#import <UIKit/UIKit.h>

@interface CardCollectionViewCell : UICollectionViewCell

/**
 *  背景图片
 */
@property (weak, nonatomic) IBOutlet UIImageView *backgroundImageView;

18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40
/**
 *  卡号
 */
@property (weak, nonatomic) IBOutlet UILabel *cardNumberLabel;

/**
 *  密码
 */
@property (weak, nonatomic) IBOutlet UILabel *cardPasswordLabel;

/**
 *  金额
 */
@property (weak, nonatomic) IBOutlet UILabel *amountLabel;

/**
 *  数据源
 */
@property (nonatomic,strong)  TOJingdongEcardEntity *Cardmodel;

/**
 *  遮罩层
 */
曹云霄's avatar
曹云霄 committed
41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57
@property (weak, nonatomic) IBOutlet UIImageView *maskImageView;

/**
 *  已使用imageView
 */
@property (weak, nonatomic) IBOutlet UIImageView *usedImageView;

/**
 *  去使用Button
 */
@property (weak, nonatomic) IBOutlet UIButton *useingButton;

/**
 *  遮罩层View
 */
@property (weak, nonatomic) IBOutlet UIImageView *maskBackGroundView;

58

59 60

@end