No Description

FKHomeFollowInfoCell.h 414B

123456789101112131415161718192021222324
  1. //
  2. // FKHomeFollowInfoCell.h
  3. // FirstLink
  4. //
  5. // Created by ascii on 16/8/13.
  6. // Copyright © 2016年 FirstLink. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @protocol FKHomeFollowCellDelegate <NSObject>
  10. @optional
  11. - (void)followClickCell:(id)cell index:(NSInteger)index;
  12. @end
  13. @interface FKHomeFollowInfoCell : UITableViewCell
  14. @property (nonatomic, weak ) id<FKHomeFollowCellDelegate> delegate;
  15. @end