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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 19, 20262026-05-19T13:46:25+00:00 2026-05-19T13:46:25+00:00

My iPhone app is grabbing a JSON object from a PHP website. The object

  • 0

My iPhone app is grabbing a JSON object from a PHP website.

The object on the PHP site has multiple properties that are Integers.

The properties that are retrieved from the database come back from the database (where they are stored as INT) look like this in the JSON: "seatedplayers":"3"

The properties that are modified in the PHP code look like this in the JSON: "currentseat":1

In my Obj-c I am using an NSNumberFormatter to properly format them like this:
[numFormatter numberFromString:[jsonObject objectForKey:@"seatedplayers"]]; (jsonObject is an NSDictionary)

That code works fine on the properties with quotes around the value, but not on the others. If I add stringValue in my Objective-C code it works on the properties without quotes but not the ones with quotes.

Now, my big problem here, is that this app will need to communicate with Sites that I won’t personally write, so what code in Objective-C could I write to handle either instance?

EDIT
This is how I get the NSDictionary jsonObject.

- (NSDictionary *) getJSONObjectFromWebAddress:(NSString *) address {
// Prepare the URL Request
NSURLRequest *request = [NSURLRequest requestWithURL:[NSURL URLWithString:address]];

// Perform the request, expecting JSON back
NSData *responseData = [NSURLConnection sendSynchronousRequest:request returningResponse:nil error:nil];

NSString *responseString = [[NSString alloc] initWithData:responseData encoding:NSUTF8StringEncoding];

NSError *error;
SBJsonParser *parser = [[SBJsonParser new] autorelease];
NSDictionary *jsonObject = [parser objectWithString:responseString error:&error];
if (!jsonObject) {
    NSLog(@"%@", error);
}

[responseString release];
return jsonObject;
}
  • 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-05-19T13:46:26+00:00Added an answer on May 19, 2026 at 1:46 pm

    I had the same problem. Luckily, both NSString and NSNumber responds to intValue, so you can safely use that.

    
    //NSDictionary* myJsonParsed;
    [NSString stringWithFormat:@"%d", [[myJsonParsed valueForKey:@"stringOrInt"] intValue]];
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

My iPhone app has a UIWebView that loads a page containing javascript that sets
I have an iPhone app that hides the status bar. However, my main view
I have a simple iphone app that's based on the CrashLanding sample app. So
I'm developing an iPhone app that uses the built-in SQLite database. I'm trying to
For an iPhone app that submits images to a server I need somehow to
I have an iPhone app that compiles and runs fine in the Simulator on
The iPhone app I am developing has a strange quirk where it runs ok
Our iPhone app code currently uses NSURLConnection sendSynchronousRequest and that works fine except we
The iphone app I am creating has an array of commonly used settings. These
An iPhone app which I am creating generates reports from a Core Data database

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.