// // InspectDetailView.h // redstar // // Created by admin on 15/11/12. // Copyright © 2015年 ZWF. All rights reserved. // #import <UIKit/UIKit.h> #import "InspectListCell.h" @interface InspectDetailView : UIView @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; // 剩余天数 @property (nonatomic, strong) UIImageView *alreadyView; @property (nonatomic, strong) UIView *allView; @end