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

#import <UIKit/UIKit.h>

11
@interface RankDetailView : UIView
admin's avatar
admin committed
12
@property (nonatomic, strong) UILabel *addressLabel; // 地址
13 14 15 16 17 18 19 20 21 22
@property (nonatomic, strong) UILabel *titleLabel; // 总标题
@property (nonatomic, strong) UILabel *reportTimeLabel; // 上报时间
@property (nonatomic, strong) UILabel *totalScoreLabel; // 总评分
@property (nonatomic, strong) UILabel *totalGradeLabel; // 总排名
@property (nonatomic, strong) UILabel *timeLabel; // 时间
@property (nonatomic, strong) UILabel *scoreLabel; // 分数
@property (nonatomic, strong) UIView *gradeView; // 排名
@property (nonatomic, strong) UILabel *gradeLabel; // 排名
@property (nonatomic, strong) UIImageView *gradeImageView; // 排名
@property (nonatomic, strong) UIScrollView *showScrollView; // 轮播图
23 24

@property (nonatomic, strong) NSArray *storePictures;
admin's avatar
admin committed
25
@end