123456789101112131415161718192021222324 |
- //
- // FKHomeFollowInfoCell.h
- // FirstLink
- //
- // Created by ascii on 16/8/13.
- // Copyright © 2016年 FirstLink. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- @protocol FKHomeFollowCellDelegate <NSObject>
- @optional
- - (void)followClickCell:(id)cell index:(NSInteger)index;
- @end
- @interface FKHomeFollowInfoCell : UITableViewCell
- @property (nonatomic, weak ) id<FKHomeFollowCellDelegate> delegate;
- @end
|