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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 9, 20262026-06-09T11:20:26+00:00 2026-06-09T11:20:26+00:00

Sorry I realise this is a simple question but im new to iOS development

  • 0

Sorry I realise this is a simple question but im new to iOS development and objective-c.

Coming from a c# background, I would try parse the string in the text box then if true assign it to an int to be used in a sum, then assign that to a label.

In iOS and obj-c im having some trouble with the above, and then what I would need to release and alloc.

Any help would be appreciated please.

  • 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-09T11:20:28+00:00Added an answer on June 9, 2026 at 11:20 am

    You can use NSScanner to do that. For example:

    NSString *test = @"45";
    NSScanner *scanner = [[NSScanner alloc] initWithString:test];
    NSInteger integer;
    if ([scanner scanInteger:&integer])
    {
        NSLog(@"The value is: %i", integer);
    }
    else
    {
        NSLog(@"Didn't parse successfully.");
    }
    

    As another answer notes, you can use intValue or integerValue on NSString. There are a couple of things to note about that approach:

    1. It returns 0 if the parse fails. This makes it impossible to determine if the value parsed was actually 0, or if the parse just failed.
    2. Both NSScanner and intValue allow for whitespace, so     45 would parse successfully. With NSScanner, you can disable that if you desire by using setCharactersToBeSkipped to nil:

      [scanner setCharactersToBeSkipped:nil];
      

    You can perform normal arithmetic from there on, like integer + 20, or sum other numbers that you’ve parsed.

    If locale is important (See Julien’s answer), then you would use the setLocale method on NSScanner with an NSLocale for example, if we want to ensure the en-US locale is always used:

    NSLocale *locale = [[NSLocale alloc] initWithLocaleIdentifier:@"en_US"];
    [scanner setLocale: locale];
    

    what I would need to release and alloc.

    That depends on quite a few things. Are you using ARC? If so then ARC will take care of the release for you. You may want to read up on memory management.

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

Sidebar

Related Questions

Sorry for this simple question, but I can't solve it... There is an example:
Sorry, I know this question is easy, but I don't know how to get
sorry for the dummy question but I cannot find a simple and clean way
Sorry but I am not sure how to ask this question but I am
Sorry if this question seems stupid, but it's stumped me for a couple days,
Sorry if this is a stupid question, but is there an easy way to
Sorry this is such a long question but it touches on a general issue
Sorry if this is a stupid question, but it's something that I'm curious about.
Sorry for question but I can't find answer anywhere on internet. I couldn't find
Sorry if this has been asked before, I did check but couldn't find anything...

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.