1234567891011121314151617181920212223242526272829 |
- //
- // FKExploreCollectionCell.h
- // FirstLink
- //
- // Created by ascii on 16/2/16.
- // Copyright © 2016年 FirstLink. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- @class FKExploreViewModel;
- @protocol FKExploreCellDelegate <NSObject>
- @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<FKExploreCellDelegate> delegate;
- @end
|