그림을 클릭하여 좌표계를 바꾸고 그림을 확대합니다
요구 사항
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;
}];
}
참고: 변환하려는 좌표계를 직접 수정합니다.
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
다양한 언어의 JSONJSON은 Javascript 표기법을 사용하여 데이터 구조를 레이아웃하는 데이터 형식입니다. 그러나 Javascript가 코드에서 이러한 구조를 나타낼 수 있는 유일한 언어는 아닙니다. 저는 일반적으로 '객체'{}...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.