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 956575
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 16, 20262026-05-16T00:33:34+00:00 2026-05-16T00:33:34+00:00

i have a imageView in table cell now i want to chnage image on

  • 0

i have a imageView in table cell now i want to chnage image on tap how to do that

 switch(indexPath.section)
case 0:  

    CGRect frame;


       frame= CGRectMake(20 ,10, 270, 180);//277 182
       UIImageView * myImageView = [[UIImageView alloc]init];
       myImageView.image = [UIImage imageNamed:@"Abe1.jpg"];// abe2, abe3.png


       myImageView.frame = frame;
       //UIImageView *imageView = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"bowl.png"]];
       [cell.contentView addSubview: myImageView];
       [myImageView release];

how to change image on tap ( abe1.png,abe2.png,abe3.png)??

  • 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-05-16T00:33:35+00:00Added an answer on May 16, 2026 at 12:33 am

    You need to do the following following:

    // This will check if the user had started to touch something
    - (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event {
        UITouch *touch = [touches anyObject];
        //Checks if the user touched your image.
        if([[touch view] == myImageView) {
            //Make a integer that will keep track of which image your on. Initialize at zero for Abe1.
            if(counter == 0) {
               myImageView.image = [UIImage imageNamed:@"Abe2.jpg"]; 
               counter = 1;
            }
            else if(counter == 1) {
               myImageView.image = [UIImage imageNamed:@"Abe3.jpg"]; 
               counter = 2;
            }
            else if(counter == 2) {
               myImageView.image = [UIImage imageNamed:@"Abe1.jpg"]; 
               counter = 0;
            }
        }
    }
    

    EDIT:

    Sorry I forgot it was a tableview. To check which one is the correct cell do the following:

    - (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
        NSUInteger row = [indexPath row];   
        if (row == 0){
            if(counter == 0) {
               myImageView.image = [UIImage imageNamed:@"Abe2.jpg"]; 
               counter = 1;
           }
            else if(counter == 1) {
               myImageView.image = [UIImage imageNamed:@"Abe3.jpg"]; 
               counter = 2;
           }
            else if(counter == 2) {
               myImageView.image = [UIImage imageNamed:@"Abe1.jpg"]; 
               counter = 0;
        }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a ImageView and draw some things on that view. Now I want
i want to display an image besides the text in table cell. i have
I have set imageView's frame in table using the following code. cell.imageView.image = [UIImage
I have a table view where I want a different image for each cell
I have an question.If i want to change the table cell image view image
I have table cells with an image on the left. Now, every time one
I have table view cells with cell image and text label and detailed label.
I have 2 image view on a single table view cell. and i am
I have a custom Table View Cell that displays the details of a Conference
I have a table filled with tableviewcells that have an imageview as their highlight

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.