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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 13, 20262026-05-13T11:02:24+00:00 2026-05-13T11:02:24+00:00

I’m new at objective-c and stuck with a problem. Is it possible to take

  • 0

I’m new at objective-c and stuck with a problem. Is it possible to take an argument of a function to use as some variable names?

For example, say I have a bunch of image: aPic1, aPic2, bPic1, bPic2, cPic1, cPic2, and I want to create an action so that every time when a button is clicked, the view controller will hide Pic1 and display Pic2, depending which button is clicked.

- (void) performAction:(NSMutableString *) text
{
    [text appendString:@"Pic1"].hidden = YES;    //I wanna hide textPic1, which is a UIImageView
    [text appendString:@"Pic2"].hidden = NO;     //I wanna show textPic2, which is also a UIImageView
}

I know I should not use NSString or NSMutableString in this case. Anyone has any idea how I can achieve my objective with this kind of function? Thanks.

  • 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-13T11:02:24+00:00Added an answer on May 13, 2026 at 11:02 am

    Yes you can. (c) 🙂

    For the solution I suggest to work you will need to be able to access (set/get) your variables via methods (easily done using properties or writing your own setters and getters).

    Here’s an example:

    - (void)performAction:(NSMutableString *)text {
        [(UIImageView *)[self performSelector:NSSelectorFromString([text stringByAppendingString:@"Pic1"])] setHidden:YES];
        [(UIImageView *)[self performSelector:NSSelectorFromString([text stringByAppendingString:@"Pic2"])] setHidden:NO];
    }
    

    As for properties I actually thought about simply giving you a sample code to get start using this great feature of Objective-C ASAP, which I will do. Though I’m not sure about going deep into this topic because it may require too much of Internet paper, so that’s why after the sample code I’ll also add a few links for further reading.

    @interface AClass : NSObject {
        // Here's where you declare variables
        NSObject *objectForInternalUseWeWantToBeRetained;
        id linkToObjectUsuallyNotRetained;
        int nonObjectVariable;
        BOOL aVariableWithARenamedGetter;
    }
    
    // And here's where their properties are declared
    @property (nonatomic, retain) NSObject *objectForInternalUseWeWantToBeRetained;
    @property (nonatomic) id linkToObjectUsuallyNotRetained;
    @property (nonatomic, assign) int nonObjectVariable;
    @property (nonatomic, assign, getter=renamedVariableGetter) BOOL aVariableWithARenamedGetter;
    
    
    @end
    
    
    @implementation AClass
    
    // Here we command the machine to generate getters/setters for these properties automagically
    @synthesize objectForInternalUseWeWantToBeRetained, linkToObjectUsuallyNotRetained, nonObjectVariable, aVariableWithARenamedGetter;
    
    // But you can implement any of the getters/setters by yourself to add some additional behaviour
    - (NSObject *)objectForInternalUseWeWantToBeRetained {
        // Some additional non-usual stuff here
    
        // And after that we do the getters job - return the variables value
        return objectForInternalUseWeWantToBeRetained;
    }
    
    // And of course we don't forget to release all the objects we retained on dealloc
    - (void)dealloc {
        [objectForInternalUseWeWantToBeRetained release];
    
        [super dealloc];
    }
    
    
    @end
    
    // And here's where their properties are declared
    @property (nonatomic, retain) UIImageView *testPic1;
    @property (nonatomic, retain) UIImageView *testPic2;
    
    
    @end
    

    Warning: I ran through the suff very quickly. Here’s a nice tutorial at CocoaCast blog – Properties in Objective-C 2.0, which I think might be a good starting point. BTW they provide a lot of learning materials (podcasts, screencasts, etc) so browsing their site further might be useful. And of course the main place to learn all about Objective-C and Cocoa is official documentation, here’s where it is about properties.

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

Sidebar

Ask A Question

Stats

  • Questions 280k
  • Answers 280k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer The -k flag hasn't been added yet to gant, afaik.… May 13, 2026 at 3:34 pm
  • Editorial Team
    Editorial Team added an answer A separate tags table for each content type certainly seems… May 13, 2026 at 3:34 pm
  • Editorial Team
    Editorial Team added an answer You can get the centre point of a polygon by… May 13, 2026 at 3:34 pm

Related Questions

I want use html5's new tag to play a wav file (currently only supported
I've got a string that has curly quotes in it. I'd like to replace
I'm trying to decode HTML entries from here NYTimes.com and I cannot figure out
I ran into a problem. Wrote the following code snippet: teksti = teksti.Trim() teksti
In order to apply a triggered animation to all ToolTip s in my app,

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

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.