CommonEditorBannerCell.h 731 B

1234567891011121314151617181920212223242526272829
  1. //
  2. // CommonEditorBannerCell.h
  3. // TestPhoto
  4. //
  5. // Created by Jack on 2017/11/30.
  6. // Copyright © 2017年 Jack. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @class CommonEditorBannerCell;
  10. @protocol CommonEditorBannerDelegate <NSObject>
  11. //@required
  12. //- (void)commonEditorBannerCell:(CommonEditorBannerCell *)cell didLoadImage:(UIImage *)img atIndexPath:(NSIndexPath *)indexPath;
  13. @optional
  14. - (void)commonEditorBannerCell:(CommonEditorBannerCell *)cell didClickItemAtIndexPath:(NSIndexPath *)indexPath;
  15. @end
  16. @interface CommonEditorBannerCell : UITableViewCell
  17. @property (nonatomic,weak) UIViewController<CommonEditorBannerDelegate> *delegate;
  18. - (void)setContent:(NSDictionary *)content;
  19. - (NSDictionary *)content;
  20. @end