No Description

FKCirclePublicImageCell.h 771B

123456789101112131415161718192021222324252627282930
  1. //
  2. // FKCirclePublicImageCell.h
  3. // FirstLink
  4. //
  5. // Created by ascii on 16/6/8.
  6. // Copyright © 2016年 FirstLink. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "UIPlaceHolderTextView.h"
  10. typedef enum {
  11. FKCirclePublicImageCellButtonDelete,
  12. FKCirclePublicImageCellButtonText,
  13. FKCirclePublicImageCellButtonClip,
  14. } FKCirclePublicImageCellButton;
  15. typedef void (^FKCirclePublicImageCellClickCallback)(FKCirclePublicImageCellButton btnType, NSIndexPath *indexPath);
  16. @interface FKCirclePublicImageCell : UITableViewCell
  17. @property (nonatomic, strong) UIPlaceHolderTextView *textView;
  18. @property (nonatomic, copy ) FKCirclePublicImageCellClickCallback clickCallback;
  19. + (CGFloat)heightWith:(id)item;
  20. - (void)configWith:(id)item;
  21. @end