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

The Archive Base Latest Questions

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

Im trying to display a word picked at random on an action from my

  • 0

Im trying to display a word picked at random on an action from my array

Ive looked at Randomize words but still not getting it to work.

My label text is _answer

in my viewDidLoad:

NSArray *words = [NSArray arrayWithObjects: @"Blue", @"Green", @"Red", nil ];
NSString *str=[words objectAtIndex:arc4random()%[words count]];

under my action method:

 [_answer setText:[NSString stringWithFormat:@"%d", arc4random()%[words count]];

I get an unused string error for str

And in my action method I have an error use of undeclared identifier "words" but its in the viewDidLoad

  • 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-16T14:31:46+00:00Added an answer on June 16, 2026 at 2:31 pm

    Scope. The variables you created in your viewDidLoad method (words, str) are only valid inside that method (that is their scope). If you want to use them in another method, such as your ‘action’ method, you need to declare them in the class scope as a member variable/property.

    As an example, in your .h file:

    @interface ExampleViewController : UIViewController
        @property(nonatomic) NSString *answer;
        // ... your other stuff ...
    @end
    

    In your .m file:

    @synthesize answer;
    - (void)viewDidLoad
    {
        NSArray *words = [NSArray arrayWithObjects: @"Blue", @"Green", @"Red", nil ];
        self.answer = [words objectAtIndex:arc4random()%[words count]];
        [super viewDidLoad];
    }
    

    Finally, still in .m, your action:

    [_answer setText:self.answer];
    

    You can also just decalre it as a member variable (not a property).

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

Sidebar

Related Questions

I am trying to display data that I am getting from server through json.
I am trying to display a element from mysql table in a input box
I am trying to count frequency of words in a text file. But I
I'm trying to display the character š in a textbox, but it's only displaying
I am trying to to figure out how to display just the the word
I'm trying to display tooltips in Java which may or may not be paragraph-length.
I am trying to display a live word count in the vim statusline. I
I'm trying to do a karaoke-like application . I want to display a word
I'm trying to wrap the words of a given string and display it in
I'm trying to display various texts on small screens (phones) text is justified but

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.