| 1234567891011121314151617181920212223242526272829 |
- //
- // CommonEditorBannerCell.h
- // TestPhoto
- //
- // Created by Jack on 2017/11/30.
- // Copyright © 2017年 Jack. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- @class CommonEditorBannerCell;
- @protocol CommonEditorBannerDelegate <NSObject>
- //@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<CommonEditorBannerDelegate> *delegate;
- - (void)setContent:(NSDictionary *)content;
- - (NSDictionary *)content;
- @end
|