// // CommonEditorBannerCell.h // TestPhoto // // Created by Jack on 2017/11/30. // Copyright © 2017年 Jack. All rights reserved. // #import @class CommonEditorBannerCell; @protocol CommonEditorBannerDelegate //@required //- (void)commonEditorBannerCell:(CommonEditorBannerCell *)cell didLoadImage:(UIImage *)img atIndexPath:(NSIndexPath *)indexPath; @optional - (void)commonEditorBannerCell:(CommonEditorBannerCell *)cell didClickItemAtIndexPath:(NSIndexPath *)indexPath; @end @interface CommonEditorBannerCell : UITableViewCell @property (nonatomic,weak) UIViewController *delegate; - (void)setContent:(NSDictionary *)content; - (NSDictionary *)content; @end