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