|
//
// nodeInfoCell.h
// ThePaperDemo
//
// Created by scar1900 on 14-9-30.
// Copyright (c) 2014年 scar1900. All rights reserved.
//
#import <UIKit/UIKit.h>
@interface nodeInfoCell : UICollectionViewCell {
void(^cancelOrderBlock)(nodeObjectBO* nodeBO);
}
@property(nonatomic, strong)nodeObjectBO *nodeInfoBO;
@property(nonatomic, assign)BOOL isDelete;
@property(nonatomic, assign)NSInteger cellIndex;
- (void)cancelOrderBlock:(void(^)(nodeObjectBO*))block;
@end
|