Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8462631
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 10, 20262026-06-10T14:13:10+00:00 2026-06-10T14:13:10+00:00

I have one image view, I set the image on it. I want to

  • 0

I have one image view, I set the image on it. I want to open closeup view of that image by onclick of that image.
How we can achieve this? any idea

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-10T14:13:12+00:00Added an answer on June 10, 2026 at 2:13 pm

    Firstly do this:

    imageView.userInteractionEnabled = YES;
    

    Another thing is add UIGestureRecognizerDelegate in .h of yourViewController

    @interface yourViewController : UIViewController<UIGestureRecognizerDelegate>
    #import <QuartzCore/QuartzCore.h>
    

    Now Add UITapGestureRecognizer in imageView.

    UITapGestureRecognizer *tap = [[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(handleImageTap:)];
        tap.cancelsTouchesInView = YES;
        tap.numberOfTapsRequired = 1;
        tap.delegate = self;
        [imageView addGestureRecognizer:tap];
        [tap release];
    
    // handle method
    - (void) handleImageTap:(UIGestureRecognizer *)gestureRecognizer {
       // your closeup view here on image click
       UIImageView *imgPopView = [UIImageView alloc]initWithFrame:self.view.frame];
       // Add image in imgPopView
       [self.view addSubView:imgPopView];
    
       // instantaneously make the image view small (scaled to 1% of its actual size)
       imgPopView.transform = CGAffineTransformMakeScale(0.01, 0.01);
      [UIView animateWithDuration:0.4 delay:0 options:UIViewAnimationOptionCurveEaseOut animations:^{
        // animate it to the identity transform (100% scale)
        iimgPopView.transform = CGAffineTransformIdentity;
      } completion:^(BOOL finished){
        // if you want to do something once the animation finishes, put it here
      }];
    
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I want to show an image view for three like on/off,if any one have
I have a layout that contains two ImageViews. I want one of them to
I have one image submit button like this <input id=enter name=enter type=image value=Login src=images/btn_login.jpg/>
I have one image animation started using GameQuery. Now I want to stop the
i have created one image but problem is that when i save image from
I have one big buffer image. I want to create another buffer image with
I have the following image in a CMS that I want to hide, I
I want to have an image open from a URL to an intent, most
I have a list view that can display items based on internal state (it
Couldn't find an answer to this one. I have a WPF ListView control that

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.