InspectDetailView.h 999 Bytes
Newer Older
1
//
2
//  InspectDetailView.h
3 4
//  redstar
//
5
//  Created by admin on 15/11/12.
6 7 8 9 10 11
//  Copyright © 2015年 ZWF. All rights reserved.
//

#import <UIKit/UIKit.h>
#import "InspectListCell.h"

12
@interface InspectDetailView : UIView
13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
@property (nonatomic, strong) UILabel *shopnameLabel; // 商店名称
@property (nonatomic, strong) UILabel *startDateLabel; // 起始时间
@property (nonatomic, strong) UILabel *overDateLabel; // 截止时间
@property (nonatomic, strong) UILabel *progressLabel; // 完成进度

@property (nonatomic, strong) UILabel *alreadyLabel;
@property (nonatomic, strong) UILabel *allLabel;


@property (nonatomic, assign) ProgressState progressState;
@property (nonatomic, assign) CGFloat multiplier;


@property (nonatomic, strong) UIButton *unfoldBtn;
@property (nonatomic, strong) UIImageView *arrowImageView;

@property (nonatomic, strong) UILabel *dayLabel; // 剩余天数
30 31 32

@property (nonatomic, strong) UIView *alreadyView;
@property (nonatomic, strong) UIView *allView;
33
@end