XRImage.m 465 B

12345678910111213141516171819
  1. //
  2. // XRImage.m
  3. // XRWaterfallLayoutDemo
  4. //
  5. // Created by ibos on 16/3/29.
  6. // Copyright © 2016年 XR. All rights reserved.
  7. //
  8. #import "XRImage.h"
  9. @implementation XRImage
  10. + (instancetype)imageWithImageDic:(NSDictionary *)imageDic {
  11. XRImage *image = [[XRImage alloc] init];
  12. image.imageURL = [NSURL URLWithString:imageDic[@"img"]];
  13. image.imageW = [imageDic[@"w"] floatValue];
  14. image.imageH = [imageDic[@"h"] floatValue];
  15. return image;
  16. }
  17. @end