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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 22, 20262026-05-22T23:35:41+00:00 2026-05-22T23:35:41+00:00

I’ve got a small issue in setting the image for a button in MainViewController

  • 0

I’ve got a small issue in setting the image for a button in MainViewController, from another UIViewController.

Actually what happens is this: when I click the lockButton in the MainViewController, it opens a different UIViewController where I can set password. Once the password is set successfully, I need to change the image of the lockButton in the MainViewController.

Can anyone please help me to get out of this issue? Thank you.

  • 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-22T23:35:42+00:00Added an answer on May 22, 2026 at 11:35 pm

    You have to point to the instance of the MainViewController and then change the settings for its inner components.
    First of all, you should be able to access that instance from your app delegate, at least this is straightforward if you’re using the default project template from Xcode. To do this you should use this snippet:

    MyAppDelegate *app = [[UIApplication sharedApplication] delegate];
    MainViewController *view = delegate.mainViewController;
    

    To ensure this is working, check if the MainViewController‘s instance is available as a property in the app delegate’s header file. You should find something like this:

    @property(readonly) MainViewController *mainViewController;
    

    Moreover, the MainViewController has to expose as a property the button you are looking for, through its header file. If you are designing the view via IB, you should have something like this, I suppose:

    @property(nonatomic, retain) IBOutlet UIButton *lockButton;
    

    Once you have all this stuff you will be able to change the button’s image this way:

    MyAppDelegate *app = [[UIApplication sharedApplication] delegate];
    MainViewController *view = delegate.mainViewController;
    UIImage *image = [UIImage imageNamed:@"image.png"];
    [view.lockButton setImage:btnImage forState:UIControlStateNormal];
    

    This should work fine for you. You’d probably have to adapt something here or there, but this is the way you should implement the solution.

    Edit

    This solution will work fine but it’s not the only one. A different approach could be the one of using protocols. What you’ll do is creating a way to make the controller that saves the password talk back to the main view controller.

    Your PasswordViewController (let’s call the new view controller this way) should define in the header file a new protocol. Eg.

    @protocol PasswordViewControllerDelegate
        @required
        - (void) passwordChanged;
    @end
    

    Then, your MainViewController will have to implement this delegate:

    @interface MainViewController : UIViewController <PasswordViewControllerDelegate>
        ....
    @end
    
    @implementation MainViewController
        ....
    
        - (void) passwordChanged {
            [lockButton setImage:[UIImage imageNamed:@"myImage.png" forState:UIControlStateNormal];
        }
    
        ....
    }
    

    Now, in the definition of the PasswordViewController you will have to define a property called delegate:

    @property (nonatomic, retain) id<PasswordViewControllerDelegate> delegate;
    

    When you create the new instance of PasswordViewController from the MainViewController you should set the MainViewController as its delegate:

    PasswordViewController pvc = [[PasswordViewController alloc] init];
    pvc.delegate = self;
    // then you present the view controller
    

    and when you change the password in the PasswordViewController you simply will have to call the delegate’s method. It’s as easy as this:

    [self.delegate passwordChanged];
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

For some reason, after submitting a string like this Jack’s Spindle from a text
I'm parsing an RSS feed that has an &#8217; in it. SimpleXML turns this
Does anyone know how can I replace this 2 symbol below from the string
link Im having trouble converting the html entites into html characters, (&# 8217;) i
I used javascript for loading a picture on my website depending on which small
I've got a string that has curly quotes in it. I'd like to replace
this is what i have right now Drawing an RSS feed into the php,
I am currently running into a problem where an element is coming back from
I have a bunch of posts stored in text files formatted in yaml/textile (from
I have this code: - (void)parser:(NSXMLParser *)parser foundCDATA:(NSData *)CDATABlock { NSString *someString = [[NSString

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.