|
//
// myCreateCell.h
// ThePaperHD
//
// Created by YoungLee on 15/4/27.
// Copyright (c) 2015年 scar1900. All rights reserved.
//
#import <UIKit/UIKit.h>
@protocol myCreateCellDelegate <NSObject>
-(void) gotoTopicInfo:(TopicInfoBO *) topicInfo indexPath:(NSIndexPath*)indexPath;
-(void) gotoCreat:(TopicInfoBO*) topicInfo indexPath:(NSIndexPath*)indexPath;
-(void) edit:(TopicInfoBO*)topicInfo indexPath:(NSIndexPath*) indexPath;
-(void) dele:(TopicInfoBO*)topicInfo indexPath:(NSIndexPath*) indexPath;
@end
@interface myCreateCell : UITableViewCell
@property(nonatomic,strong)TopicInfoBO *topicInfo;
@property(nonatomic, weak)id<myCreateCellDelegate> myCreateDelegate;
@property(nonatomic, strong)NSIndexPath *indexPath;
//-(void) setData:(TopicInfoBO *) topInfo;
@end
|