// // recommendCell.h // ThePaperBase // // Created by Huixin on 15/10/26. // Copyright © 2015年 scar1900. All rights reserved. // #import @protocol recommendCellDelegate - (void)wechatRecommend; - (void)friendRecommend; - (void)weiboRecommend; - (void)qqZoneRecommend; - (void)qqRecommend; @end @interface recommendCell : UITableViewCell @property(nonatomic, weak)id delegate; @property(nonatomic, strong)NSDictionary *taskInfo; - (void)addBottomLine; @end