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

#import <UIKit/UIKit.h>
#import "RankDetailView.h"
admin's avatar
admin committed
11
#import "TaskDetailModel.h"
12 13 14 15 16 17 18 19 20 21

@interface RankDetailHeaderView : UIView
@property (nonatomic, strong) RankDetailView *rankDetailView;

@property (nonatomic, strong) UILabel *shopNameLabel;
@property (nonatomic, strong) UIButton *historyBtn; // 历史成绩

@property (nonatomic, strong) UILabel *titleLabel;
@property (nonatomic, strong) UIButton *showAllBtn; // 展开全部

admin's avatar
admin committed
22 23
@property (nonatomic, strong) TaskDetailModel *taskDetail;

24
@end