BigImgVC.h 446 B

123456789101112131415161718192021
  1. //
  2. // BigImgVC.h
  3. // JSJPCoach
  4. //
  5. // Created by EchoShacolee on 2018/1/31.
  6. // Copyright © 2018年 Danson. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @interface BigImgVC : UIViewController
  10. @property (nonatomic ,copy)NSString * picName;
  11. @property (nonatomic ,copy)NSString * picType;//0本地(这个需要再写下) 1网络
  12. @property (nonatomic ,strong)UIImage *image;
  13. @property (nonatomic ,strong)UIImageView * bigImageView;
  14. @end