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

#import <UIKit/UIKit.h>
admin's avatar
admin committed
10
#import "TaskModel.h"
11 12 13

@interface RankDetailTableCell : UITableViewCell

14 15 16
@property (nonatomic, assign) BOOL isDrop; // 判断是否drop


17 18 19 20
@property (nonatomic, strong) UIImageView *arrowImageView;
@property (nonatomic, strong) UIButton *mainTitleBtn;
@property (nonatomic, strong) UILabel *scoreLabel;

21 22
@property (nonatomic, strong) UIScrollView *scrollView;

admin's avatar
admin committed
23 24
@property (nonatomic, strong) TaskModel *task;

25
@end