CommonEditorBannerItemCell.m 477 B

1234567891011121314151617181920212223
  1. //
  2. // CommonEditorBannerItemCell.m
  3. // TestPhoto
  4. //
  5. // Created by Jack on 2017/11/30.
  6. // Copyright © 2017年 Jack. All rights reserved.
  7. //
  8. #import "CommonEditorBannerItemCell.h"
  9. @interface CommonEditorBannerItemCell ()
  10. @property (strong, nonatomic) IBOutlet UIImageView *coverImageView;
  11. @end
  12. @implementation CommonEditorBannerItemCell
  13. - (void)setItem:(NSDictionary *)item {
  14. UIImage *img = [item objectForKey:@"image"];
  15. self.coverImageView.image = img;
  16. }
  17. @end