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

  • Home
  • SEARCH
  • 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 6854743
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T01:40:18+00:00 2026-05-27T01:40:18+00:00

If I have two images for a UIButton (box with checkmark, box without checkmark),

  • 0

If I have two images for a UIButton (box with checkmark, box without checkmark), do I want to subclass UIButton? If so, how do I know when the button is pressed to set the two images for the on/off (or checked/not checked) state?

If I’m not supposed to subclass UIButton, then do I do something like this every time I want to use a checkmark button in a class?

.h 
@property (nonatomic, assign) BOOL isPressed;

.m

- (IBAction)buttonPressed:(id)sender {
    isPressed = !isPressed;
    if (isPressed) {
        UIImage *checked = [UIImage imageNamed:@"checked.png"];
        [button setImage:checked forState:UIControlStateNormal];
    }
    else {
        UIImage *unchecked = [UIImage imageNamed:@"unchecked.png"];
        [button setImage:unchecked.png forState:UIControlStateNormal];
    }
}
  • 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-27T01:40:19+00:00Added an answer on May 27, 2026 at 1:40 am

    UIButton has several possible states – normal, highlighted and selected and you can assign separate images for each state. Then in action method just toggle selected state for the button and it will handle image change for you:

    [button setImage:@"checked.png" forState:UIControlStateSelected];
    [button setImage:@"unchecked.png" forState:UIControlStateNormal];
    ...
    - (IBAction)buttonPressed:(id)sender {
        button.selected = !button.selected;
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Simple idea: I have two images that I want to merge, one is 500x500
I have two images wrapped in divs, one with caption while another without: <div
I have a UIButton which has images set for both Normal and Selected State.
I have an application based on CoreDataBooks. I want to toggle two images in
I have two overlay images that I want show in camera view depending on
I have two images that I want to merge into one. (Eg House.png on
I have two images in my Drawable folder. I want to mask image1 with
In my application I have two images which are arranged in circle. I want
I want to do the following in PHP: I have two images, a jpg
I have two PNGs I want to use as a button. How can I

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.