|
//
// nodeInfoView.h
// ThePaperDemo
//
// Created by scar1900 on 14-9-23.
// Copyright (c) 2014年 scar1900. All rights reserved.
//
#import <UIKit/UIKit.h>
@protocol nodeInfoCellDelegate <NSObject>
- (void)goToNodeListPage:(nodeObjectBO*)nodeBO;
- (void)clickOrder:(NSString*)nodeID isOrder:(BOOL)isOrder orderBtn:(UIButton*)btn indexPath:(NSIndexPath*)indexPath;
- (void)clickSponsor:(NSString*)url;
@end
@interface nodeInfoViewCell : UITableViewCell
@property(nonatomic, strong)nodeObjectBO *nodeInfoBO;
@property(nonatomic, weak)id<nodeInfoCellDelegate> delegate;
@property(nonatomic, strong)NSIndexPath *indexPath;
@end
|