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