RankDetailTableCell.h 570 Bytes
//
//  RankDetailTableCell.h
//  redstar
//
//  Created by admin on 15/11/12.
//  Copyright © 2015年 ZWF. All rights reserved.
//

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

@interface RankDetailTableCell : UITableViewCell

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


@property (nonatomic, strong) UIImageView *arrowImageView;
@property (nonatomic, strong) UIButton *mainTitleBtn;
@property (nonatomic, strong) UILabel *scoreLabel;

@property (nonatomic, strong) UIScrollView *scrollView;

@property (nonatomic, strong) TaskModel *task;

@end