// // FKExploreCollectionCell.h // FirstLink // // Created by ascii on 16/2/16. // Copyright © 2016年 FirstLink. All rights reserved. // #import @class FKExploreViewModel; @protocol FKExploreCellDelegate @optional - (void)exploreCellClickItem:(NSInteger)index; - (void)refreshControl:(FKRefreshControl *)refreshControl didEngageRefreshDirection:(RefreshDirection)direction; @end @interface FKExploreCollectionCell : UICollectionViewCell @property (nonatomic, strong) UITableView *tableView; @property (nonatomic, weak) FKExploreViewModel *viewModel; @property (nonatomic, weak ) id delegate; @end