XRImage.h 425 B

1234567891011121314151617
  1. //
  2. // XRImage.h
  3. // XRWaterfallLayoutDemo
  4. //
  5. // Created by ibos on 16/3/29.
  6. // Copyright © 2016年 XR. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. #import <UIKit/UIKit.h>
  10. @interface XRImage : NSObject
  11. @property (nonatomic, strong) NSURL *imageURL;
  12. @property (nonatomic, assign) CGFloat imageW;
  13. @property (nonatomic, assign) CGFloat imageH;
  14. + (instancetype)imageWithImageDic:(NSDictionary *)imageDic;
  15. @end