UIImageView+MT.h 364 B

12345678910111213141516171819202122232425
  1. //
  2. // UIImageView+MT.h
  3. // Demo
  4. //
  5. // Created by Simon on 2019/8/17.
  6. // Copyright © 2019 Simon. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @interface UIImageView (MT)
  10. #pragma mark -- 获取网络图片大小
  11. -(void)showInMiddle;
  12. /**
  13. 根据URL获取图片大小
  14. @param URL url/string
  15. @return 大小
  16. */
  17. -(CGSize)getImageSizeWithURL:(id)URL;
  18. @end