| 1234567891011121314151617181920212223 |
- //
- // CommonEditorBannerItemCell.m
- // TestPhoto
- //
- // Created by Jack on 2017/11/30.
- // Copyright © 2017年 Jack. All rights reserved.
- //
- #import "CommonEditorBannerItemCell.h"
- @interface CommonEditorBannerItemCell ()
- @property (strong, nonatomic) IBOutlet UIImageView *coverImageView;
- @end
- @implementation CommonEditorBannerItemCell
- - (void)setItem:(NSDictionary *)item {
- UIImage *img = [item objectForKey:@"image"];
- self.coverImageView.image = img;
- }
- @end
|