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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 18, 20262026-06-18T02:31:45+00:00 2026-06-18T02:31:45+00:00

How do I add an action to a custom view? Similar to how UIButtons

  • 0

How do I add an action to a custom view? Similar to how UIButtons have an action I can connect in Inteface Builder. I can’t use a SEL like below because it’s not an object, what do I use?

 @property(nonatomic, weak) IBOutlet SEL action;
  • 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-18T02:31:46+00:00Added an answer on June 18, 2026 at 2:31 am

    You want to make your custom object a subclass of UIControl (which is a subclass of UIView). Then you get all the target/action methods… if you are doing this in code the one to explore will be

    – addTarget:action:forControlEvents:
    

    If you make a custom UIControl object, then you can drag out a custom view in the storyboard and set it’s custom class to your customControl. Then you can drag out IBAction links to your viewController just as if it were a button.

    Here is how to make one in code…

    - (void)viewDidLoad
    {
        [super viewDidLoad];
        UIControl* customControl = [[UIControl alloc]initWithFrame:CGRectMake(20, 20, 200, 200)];
        customControl.backgroundColor = [UIColor redColor];
        [customControl addTarget:self 
                          action:@selector(customAction:) 
                forControlEvents:UIControlEventTouchUpInside];
        [self.view addSubview:customControl];
    }
    
    - (void)customAction:(id)sender
    {
        NSLog (@"touched");
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have one custom action (add) and two custom objects (favorites list) and (tv
How can I add custom action in generator.yml that point to an action in
i would like to use custom post_type in my wordpress plugin but i have
I have UINavigationBar subclassed and I add a custom background like so: @implementation CustomUINavigationBar
How can I add action to buttons of NSRunAlertPanel. Here's how I am creating
When I create a view different from index action (for example the action video/add)
It seems I can't figure out how to add the edit, remove, view, etc...
I have a NSMenuItem with a custom view. However, when I want to update
I have a custom subclassed uiview I created to display in-app notifications. I can
My goal is to write a custom camera view controller that: Can take photos

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.