Questions tagged [jsonkit]

A Very High Performance Objective-C JSON Library, licensed under the terms of the BSD License

87 questions
0
votes
1 answer

JSONKit with UITableview

I am getting an issue with JsonKit when parsing for a tableview, Basically I tried to the following : - (void)viewDidLoad { [super viewDidLoad]; //1 check if is it the login plist NSArray *paths =…
Ben
  • 1,031
  • 3
  • 17
  • 31
0
votes
2 answers

how to get data from this structure, JSONKit

Below is a content located at json.txt { "data": [ { "keyId": 3, "title": "This is a fundraiser 1", "budget": "1000", "users": { "user": [ { …
tranvutuan
  • 6,089
  • 8
  • 47
  • 83
0
votes
3 answers

NSNull value inside a object generated by JSONKit (or similar)

I'm storing the result of JSONKit parse in a key/value database (LevelDB), but the JSON I'm downloading has some filed set to null, and this won't let you serialize the corresponding generated object (NSArray or NSDictionary), to store it as an…
JP Illanes
  • 3,665
  • 39
  • 56
0
votes
2 answers

very basic JSON to tableView (iOS)

Well, I decided that it's time to learn a new skill, programming objective-c. My programming knowledge is very minimal, It consists of PHP, little bit of HTML, and a little bit of MySQL. What I want to do is take some JSON that is made with php and…
Throdne
  • 619
  • 2
  • 9
  • 27
0
votes
1 answer

EXC_BAD_ACCESS from JSONKit

I keep running into EXC_BAD_ACCESS when calling [obj JSONString] method in the following code and I don't know why. I have tried turning on Zombie Objects but nothing different happens. - (void)applicationDidFinishLaunching:(NSNotification…
dteoh
  • 5,794
  • 3
  • 27
  • 35
0
votes
1 answer

Object to JSString bars appear

I´ve been trying to use jsonkit for a object to string convertion. My SerializedClasses helper converts a NSMutableArray CellList into a JSONString (ssd log). This goes perfectly. Then I put the resultant string in a dictionary and then try to get…
user1347271
  • 127
  • 1
  • 8
0
votes
1 answer

NSDictionary filled with JSON data

I call an URL that returns me JSON (I use JSONKit). I convert it to a NSString that is this way: [{"name":"aaaaaa","id":41},{"name":"as","id":23},... And so on. I want to fill an UIPickerView with only the "name" part of the JSON. But, when the…
Fustigador
  • 6,339
  • 12
  • 59
  • 115
0
votes
1 answer

JSONKIT Parsing Error

I am using a singleton class to fetch JSON from a remote server (via NSURLConnection) - everything seeme to be fine except when I try to parse the JSON using JSONKit. Here is some code -(void)connection:(NSURLConnection *)connection…
Anuj Gakhar
  • 681
  • 2
  • 13
  • 26
-1
votes
1 answer

getting error when calling objectFromJSONString using JSONKit

I use the following code to create a dictionary based on a JSON string received from the server. (I have downloaded JSONKit and embedded it into the project). The code below returns a legal JSON string from the server (parsed well on Android) but…
Simon
  • 509
  • 7
  • 25
-1
votes
1 answer

How to parse json ki typical format in iphone

I am trying to parse json. but not able to get correct key. I am using JSONKIT. Below is the json data.SO i am trying to get CONTENT pls help me how to do this. `{ "apiVersion": "2.1", "data": { "updated": "2013-06-13T06:15:22.613Z", …
-1
votes
1 answer

How to use JSONKit to transmit data to a server in Xcode?

I'm basically trying to send data to a server that contains objects and fellow peers have told me to use JSONKit. As of now, I've implemented NSCoding protocol and serialized my objects with NSKeyedArchiver. But I can't find any resources on how to…
-3
votes
1 answer

xcode error - Jsonkit.m file

I'm using JSONKit Objective-C library. But its causing an error in JSONKit.m while I compile the source. I've used -fno-objc-arc compiler flag to compile non-arc code. The error is inside JSONKit.m file, pointing to the filepath/NSString…
Venkat
  • 1
  • 4
1 2 3 4 5
6