123456789101112131415161718192021222324252627282930 |
- //
- // FKCirclePublicImageCell.h
- // FirstLink
- //
- // Created by ascii on 16/6/8.
- // Copyright © 2016年 FirstLink. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "UIPlaceHolderTextView.h"
- typedef enum {
- FKCirclePublicImageCellButtonDelete,
- FKCirclePublicImageCellButtonText,
- FKCirclePublicImageCellButtonClip,
- } FKCirclePublicImageCellButton;
- typedef void (^FKCirclePublicImageCellClickCallback)(FKCirclePublicImageCellButton btnType, NSIndexPath *indexPath);
- @interface FKCirclePublicImageCell : UITableViewCell
- @property (nonatomic, strong) UIPlaceHolderTextView *textView;
- @property (nonatomic, copy ) FKCirclePublicImageCellClickCallback clickCallback;
- + (CGFloat)heightWith:(id)item;
- - (void)configWith:(id)item;
- @end
|