|
//
// TrackCell.h
// ThePaperBase
//
// Created by zhousan on 15/7/30.
// Copyright (c) 2015年 scar1900. All rights reserved.
//
#import <UIKit/UIKit.h>
@protocol TrackCellDelegate <NSObject>
@required
- (void)trackButtonClick:(UIButton *)button;
@end
@interface TrackCell : UITableViewCell
@property (nonatomic, strong) NSDictionary *dic;
@property (nonatomic, weak) id <TrackCellDelegate> delegate;
@property(nonatomic, strong)NSIndexPath *indexPath;
@end
|