그림을 클릭하여 좌표계를 바꾸고 그림을 확대합니다

1971 단어

요구 사항


1、클릭 사진 확대, 전체 화면 표시
2. 먼저 커버 커버를 설정하고 커버를 키윈도에 추가한다.그리고 이미지 뷰를 추가로 만들어서 원래 그림을 대체합니다
3. 새로 만든 이미지 뷰 좌표계를 커버층 커버로 전환하고 동료가 확대 처리

코드는 다음과 같습니다.

MDAblumCell *cell = (MDAblumCell *)[collectionView cellForItemAtIndexPath:indexPath];
    //    
    UIView *cover = [[UIView alloc] init];
    cover.frame = [UIScreen mainScreen].bounds;
    cover.backgroundColor = [UIColor clearColor];
    [cover addGestureRecognizer:[[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(tapCover:)]];
    [[UIApplication sharedApplication].keyWindow addSubview:cover];
    
    //        
    UIImageView *imageView = [[UIImageView alloc] init];
    [imageView sd_setImageWithURL:[NSURL URLWithString:self.albums[indexPath.item]]];
    imageView.contentMode = UIViewContentModeScaleAspectFill;
    //      (          )
    imageView.frame = [cover convertRect:cell.frame fromView:self.collectionView];
    self.lastFrame = imageView.frame;
    [cover addSubview:imageView];
    self.imagView = imageView;
    
    //  
    [UIView animateWithDuration:0.3f animations:^{
        cover.backgroundColor = [UIColor colorWithRed:0/255.0 green:0/255.0 blue:0/255.0 alpha:0.7];
        CGRect frame = imageView.frame;
        frame.size.width = cover.frame.size.width;
        frame.size.height = cover.frame.size.width * (imageView.image.size.height / imageView.image.size.width);
        frame.origin.x = 0;
        frame.origin.y = (cover.frame.size.height - frame.size.height) * 0.5;
        imageView.frame = frame;
    }];

//     
- (void)tapCover:(UITapGestureRecognizer *)recognizer
{
    [UIView animateWithDuration:0.3f animations:^{
        recognizer.view.backgroundColor = [UIColor clearColor];
        self.imagView.frame = self.lastFrame;
        
    }completion:^(BOOL finished) {
        [recognizer.view removeFromSuperview];
        self.imagView = nil;
    }];
}

참고: 변환하려는 좌표계를 직접 수정합니다.

좋은 웹페이지 즐겨찾기