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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 30, 20262026-05-30T22:19:21+00:00 2026-05-30T22:19:21+00:00

I have UITableViewCells each with a few UIImageViews. I want to pass the event

  • 0

I have UITableViewCells each with a few UIImageViews. I want to pass the event to the parent UITableViewController so it can act upon it. How can I send information back to the UITableViewController to let it know which UIImageView triggered the event. Using the below code, it seems the UITableViewController touchesEnded is triggered when any of the children UITableViewCells fire an event. Any way to pass information in the UIEvent?

Is there a better way to go about event handling?

//UITableViewCell
-(void)touchesEnded:(NSSet *)touches withEvent:(UIEvent *)event
{
    UITouch *touch = [touches anyObject];

    if ([touch view] == imageView)
    {
        [[self nextResponder] touchesEnded:touches withEvent:event];
    }
}

//UITableViewController
-(void)touchesEnded:(NSSet *)touches withEvent:(UIEvent *)event
{
    UITouch *touch = [touches anyObject];

    NSLog(@"clicked");
}
  • 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-30T22:19:22+00:00Added an answer on May 30, 2026 at 10:19 pm

    For a quick and dirty way, you can use the objc_setAssociatedObject and objc_getAssociatedObject of ObjC runtime.

    #import <objc/runtime.h>
    

    set the object:

    // static char key;
    objc_setAssociatedObject(event, &key, self, OBJC_ASSOCIATION_RETAIN_NONATOMIC);
    

    and get the object:

    id yourInterestObj =  objc_getAssociatedObject(event, &key);
    

    But I don’t recommend this way, it may breaks the MVC. I think your should use the Responder Chain patter to handle this situation, check the documentation for -sendAction:to:from:forEvent: of UIApplication.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a UITableView with two sections. Each section has a few UITableViewCells .
I have a UITableView with custom UITableViewCells , each of them has a UITextField
I have a tableview with custom UITableViewCells, each row in the table has a
I have a UITableViewController with a subclass of UITableViewCell with a UITableView in each
I have a UITableViewController and UITableViewCell . This cell contains three text fields. Each
I have a few custom UITableViewCells - http://img11.imageshack.us/i/customfacilitiescell.png/ which are added to this UIViewController
I have a UITableView with a few UITableViewCell s. Each cell contains a UITextfield
I have 10 UITableViewCells in my UITableView . Each cell has a UITextField .
I have a UITableView with 5 UITableViewCells . Each cell contains a UIButton which
I want to have a UIButton in each UITableViewCell that will allow me to

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.