File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed
Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -30,7 +30,7 @@ - (void)viewDidLoad {
3030 [super viewDidLoad ];
3131 UIWindow *screenWindow = [[UIApplication sharedApplication ] keyWindow ];
3232 [self .view addSubview: self .backImageView];
33- self.backImageView .image = self.backgroundImg ;
33+ // self.backImageView.image = self.backgroundImg;
3434
3535 _scroll = [DWOrigScorllView scrollViewWithDataArr: _imageArr andIndex: (_index-1 ) showDownBtnTime: 0.3 ];
3636 _scroll.delegate = self;
Original file line number Diff line number Diff line change @@ -410,8 +410,9 @@ - (void)clickShowOrigImgView:(NSNotification *)noti{
410410 UIWindow *win = [UIApplication sharedApplication ].keyWindow ;
411411 UIViewController *rootVC = win.rootViewController ;
412412 DWShowImageVC *vc = [[DWShowImageVC alloc ]init];
413+ vc.modalPresentationStyle = UIModalPresentationOverCurrentContext;
413414 vc.imageArr = _imageArr;
414- vc.backgroundImg = [self getScreenshots ];
415+ // vc.backgroundImg = [self getScreenshots];
415416 vc.index = imgIndex;
416417 [rootVC presentViewController: vc animated: NO completion: nil ];
417418 }
You can’t perform that action at this time.
0 commit comments