|
//
// commodityCell.h
// ThePaperBase
//
// Created by Huixin on 15/10/27.
// Copyright © 2015年 scar1900. All rights reserved.
//
#import <UIKit/UIKit.h>
@protocol commodityCellDelegate <NSObject>
- (void)gotoCommodity:(commodityBO*)commodity;
@end
@interface commodityCell : UITableViewCell
@property(nonatomic, weak)id<commodityCellDelegate> delegate;
- (void)setLeftCommodity:(commodityBO*)leftCommodity leftHeight:(CGFloat)leftHeight leftWidth:(CGFloat)leftWidth RightCommodity:(commodityBO*)rightCommodity rightHeight:(CGFloat)rightHeight rightWidth:(CGFloat)rightWidth;
@end
|