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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 15, 20262026-06-15T14:53:39+00:00 2026-06-15T14:53:39+00:00

Possible Duplicate: Understanding NSString comparison in Objective-C I want to compare an int and

  • 0

Possible Duplicate:
Understanding NSString comparison in Objective-C

I want to compare an int and a string, but my code won’t work. Here is my code:

NSLog(@"enterPressed was called");
int answer = firstNumber + secondNumber;
NSLog(@"Real Answer: %d", answer);

NSString *numberFromTextField = inputTextField.text;
NSLog(@"Number From Text Field: %@", numberFromTextField);

if (numberFromTextField == [NSString stringWithFormat:@"%d", answer]) {
    NSLog(@"Correct!");
}

And here is the console:

2012-12-09 13:10:55.087 MathQuiz[10728:c07] enterPressed was called

2012-12-09 13:10:55.087 MathQuiz[10728:c07] Real Answer: 60

2012-12-09 13:10:55.088 MathQuiz[10728:c07] Number From Text Field: 60

Why doesn’t it say “Correct!”?

  • 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-15T14:53:40+00:00Added an answer on June 15, 2026 at 2:53 pm

    You need to compare it as,

    if ([numberFromTextField intValue] == answer)
    

    (numberFromTextField == [NSString stringWithFormat:@"%d", answer]) is comparing the memory address of both strings. Not the values. The following would have given you the right values,

    if ([numberFromTextField isEqualToString:[NSString stringWithFormat:@"%d", answer]])
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Possible Duplicate: Understanding NSString comparison in Objective-C I've used this simple code for several
Possible Duplicate: Understanding NSString comparison in Objective-C I'v encountered strange things in objective-c, I'm
Possible Duplicate: Understanding NSString comparison in Objective-C Was just reading up about equality vs
Possible Duplicate: Understanding region of interest in openCV 2.4 i want to get a
Possible Duplicate: Objective-C - When to use 'self' I am having problem understanding the
Possible Duplicate: Understanding Python decorators I was reading a django app source code where
Possible Duplicate: Please help me understanding the error a+++++b in C Here is is
Possible Duplicate: How do I compare strings in Java? I am having trouble understanding
Possible Duplicate: Understanding pthread_detach The following code is creating a single thread which prints
Possible Duplicate: Understanding Python decorators Could you please give a short code example that

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.