30 lines
902 B
Objective-C
30 lines
902 B
Objective-C
//
|
|
// KanKanListTableCell.h
|
|
// Ifish
|
|
//
|
|
// Created by imac on 16/11/11.
|
|
// Copyright © 2016年 lianxiang. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
#import "IfishKankanListModel.h"
|
|
#import "MBProgressHUD.h"
|
|
|
|
//typedef void (^backOdersAddToal)(NSString *backOders,NSString *toal,NSMutableArray *dataA);
|
|
|
|
@protocol RecommendTableCellDelegate <NSObject>
|
|
|
|
-(void)TapRecommendTableCellDelegate:(IfishKankanListModel *)kankanListModel;
|
|
|
|
@end
|
|
|
|
@interface KanKanListTableCell : UITableViewCell <UICollectionViewDataSource, UICollectionViewDelegate, UICollectionViewDelegateFlowLayout>
|
|
|
|
@property (nonatomic, assign) id<RecommendTableCellDelegate>delegate;
|
|
@property(nonatomic,strong) UICollectionView *collectionView;
|
|
@property(nonatomic,strong) NSMutableArray *dataArray;
|
|
//-(void)loadData:(NSMutableArray*)dataArray oders:(backOdersAddToal)oders;
|
|
-(void)loadDta:(NSMutableArray*)dataArray;
|
|
|
|
@end
|