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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 8, 20262026-06-08T22:35:28+00:00 2026-06-08T22:35:28+00:00

This could be the simplest one but I am not able to find the

  • 0

This could be the simplest one but I am not able to find the exact cause. Instead to explain in words following is my code:

NSString *str = @"";
NSInteger tempInteger = [str integerValue];

if (tempInteger == 0)
{
  NSLog (@"do something");
}

If NSString returning NULL then NSInteger returning 0 and if NSStringhas some value then NSInteger returning same value.

But when NSString is NULL then I want NSInteger should return NULL not 0 but I am not able to validation NSInteger as NULL.

How can I get NULL value in NSInteger if NSString is NULL?

  • 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-08T22:35:30+00:00Added an answer on June 8, 2026 at 10:35 pm

    NULL is a pointer; NSInteger is a C primitive that can only hold numbers. It is not possible for an NSInteger to ever be NULL. (Sidenote: when we speak of Objective-C object pointers, we use nil rather than NULL.)

    Instead, if you wish to handle only cases where the integer value is 0, but the string is not NULL, you should change your condition as follows:

    if (tempInteger == 0 && str != nil)
    

    However, in your case, the string is not nil; it is merely an existent–but empty–string. If you wish to also check for that, your condition could become:

    if (tempInteger == 0 && [str length] > 0)
    

    This checks both cases because a nil string will return length 0. (In fact, any method sent to nil will return 0, nil, 0.0, etc. depending on the return type.)

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

Sidebar

Related Questions

I suppose this could apply to any dynamic language, but the one I'm using
I'm getting this error... ImportError: Could not find 'input_readers' on path 'map reduce' when
This could be a very basic Javascript I know but I just can't get
This could be considered a duplicate question, as a similar one has already been
This could save me so much time. Sometimes I find myself writing things like
This could be an amazingly dumb question, but .... I don't think a standard
I think this could be a very easy question for you. But I have
I have the simplest problem to implement, but so far I have not been
What would be a simplest algorithm one or more people could use to decide
I know this is a little subjective, but I'm looking into the following situation:

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.