I'm having a duplicate JSON file problem. I have google places SBJSON files and also Facebook JSON files. I see that the typical solution is to remove one of the JSON libraries. When I do this I get many more errors. The Google and FB JSON libraries…
Hi I'm having trouble with JSON deserialization.
I am using SBJson, the data is returned from a .net webservice.
This is the returned JSON (shortened)
{
"id": "1",
"result": [
{
"questionID": 21,
"question":…
I am trying to parse JSON file generated from ColdFusion server in SerializeJSON format. Is there any specific way to parse the serializeJSON file. It is different than normal Twitter Feed JSON file. How to parse the JSON file in such a format ? I…
I am trying to make an application that uses SBJSON and ASIHTTPRequest containing 273 pages (50 records in each page)in json. When I scroll the tableView I want to get next 50 records when I reach the last record.Currently I am getting only the…
I am getting json data from url as below:
{"message":"success","vendors":[{"businessname":"webixion","vendorid":"67","vendor_city":"kakinda"}]}
How to retrieve all 'message',businessname','vendorid','vendor_id' values
I am using SBJson Framework…
I am working with an application where I have to request a url and I get the response accordingly
I am using ASIHTTPRequest to request the URL
here is my request
-(void)getTips {
if ([CommonFunctions networkConnected]) {
…
I am developing an IOS application, using the SBJson library. I don’t use ARC on my project, and previous SBJson releases didn't use it, either.
But now SBJson uses ARC and I have to upgrade to the latest SBJson release. I viewed the SBJson classes…
I use sbjson to parse json,
this is the Json I'm trying to parse :
{"R":"0","S":"","T":"","M":[{"C00":"2013-08-16 17:35:03"}]}
and this is my code:
NSString *response = [self post:@"9903" content:payload state:@""];
NSDictionary *dict = [response…
I am implementing SBJSON to fetch the data from web service. My code in "ConnectionDidFinishLoading" is as follows:
NSString *responseString = [[NSString alloc] initWithData:responseData encoding: NSUTF8StringEncoding];
NSLog(@"Response String …
While creating a login view on my iphone app, I ran into this error:
'NSInvalidArgumentException', reason: '-[SBJsonParser objectWithString:error:]:
unrecognized selector sent to instance 0x6695330'
It's coming from this line:
NSDictionary…
Possible Duplicate:
separating keys and objects from NSMutable dictionary and use the values in insert command of sqlite
I have an NSDictionary containing parsed JSON data. How can I push these data to a database so that I can extract them from…
In my app, I have done JSON parsing and I got the coordinates in the form of a dictionary, I want to use the coordinates angd plot it in the map,
I have using this
SBJsonParser *jsonParser = [SBJsonParser new];
NSArray *jsonData = (NSArray *)…
I have some data that contains UTF8 characters. If I do following I can able to see characters correctly in console:
NSString *responseData = [[NSString alloc]
initWithData:urlData
…