123456789101112131415161718192021 |
- //
- // BigImgVC.h
- // JSJPCoach
- //
- // Created by EchoShacolee on 2018/1/31.
- // Copyright © 2018年 Danson. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- @interface BigImgVC : UIViewController
- @property (nonatomic ,copy)NSString * picName;
- @property (nonatomic ,copy)NSString * picType;//0本地(这个需要再写下) 1网络
- @property (nonatomic ,strong)UIImage *image;
- @property (nonatomic ,strong)UIImageView * bigImageView;
- @end
|