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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 13, 20262026-06-13T19:52:03+00:00 2026-06-13T19:52:03+00:00

I have a simple block of code that needs to set an NSString as

  • 0

I have a simple block of code that needs to set an NSString as one thing or another. In it’s most basic form, it looks like this:

if (conditionMet){
   NSString *outputString=[NSString stringWithString:@"A"];
} else {
   NSString *outputString=[NSString stringWithString:@"B"];
}
return outputString;

But, I’m getting a “Use of undeclared identifier ‘outputString'” error. What is a better way to do this?

I understand this is a pretty basic question, so any quick pointers on how to do this would be terrific. Thanks for reading.

  • 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-13T19:52:05+00:00Added an answer on June 13, 2026 at 7:52 pm

    What about ?

    NSString *outputString;
    if (conditionMet){
       outputString=@"A";
    } else {
       outputString=@"B";
    }
    return outputString;
    

    You need to learn about scope

    Shorter version :

    return conditionMet ? @"A" : @"B" ;

    It’s called ternary condition

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

Sidebar

Related Questions

I have a fairly simple block of code. Sub Run(Name) on error resume next
Let's say I have the following, very simple block of code: <script> function hasVal(field)
I have this code: class StoryViewClass(ListView): ... some listview methods here for one set
Suppose you have a simple block of code like this: app.get('/', function(req, res){ res.send('Hello
I have a simple UIView animation block. In the block, I only change the
I have created a simple web browser using c# and I want to block
I have to develop a simple parser, to read block of text for example:
I'm writing a simple shopping cart application and have hit a road block. Currently
I'm sure this is fairly simple, however I have a major mental block on
Usually when code needs some resource that needs to be released I see it

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.