Tagged Questions
0
votes
0answers
5 views
Parsing XML with TBXML
Currently I am having an issue parsing this XML:
<sun xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="http://www.earthtools.org/sun.xsd">
...
0
votes
1answer
23 views
CHCSVParser returns nil Array for valid filePath & valid csv file
I am trying to parse a .csv file with approximately 30K lines. The following was mycode:
NSString *pathToGameLibrary = [[NSBundle mainBundle] pathForResource:@"GameLibrarySample" ofType:@"csv"];
...
0
votes
1answer
74 views
How to use data from one JSON request for a second JSON request?
I have been successful in parsing JSON from an API and displaying it in a tableview. The data I am receiving is a user's classes that he is enrolled in, however the data I am receiving is only the ...
1
vote
1answer
35 views
How do I remove callback parameters from JSONP in Objective C to make it usable?
I have the SBJson library at my disposal, but I'm currently only using the NSJSONSerialization class in iOS.
I am making the call to
...
0
votes
0answers
17 views
integrate An Objective-C PEG parser generator
Please help me how to generate classes from command line (An objective-C PEG parser generator).
I have downloaded the git repository but didn't found enough information to get the things started.
It ...
-1
votes
0answers
75 views
NSString returns Null. Objective C
I have a NSTextField that I have turned into a NSString. I want to parse the NSString to the next ViewController to use but my NSString returns Null. Why?
- (IBAction)detailSecond:(id)sender {
...
1
vote
1answer
52 views
How to decode JSON including \u escape characters as UTF8 NSString?
I'm fetching JSON objects and saving them in NSString as follows:
// fetch JSON from a Wiki article
NSError *error = nil;
NSString *responseString = [NSString stringWithContentsOfURL:myURL ...
-2
votes
7answers
71 views
How to access the my JSON in iOS
I'm newbie in iOS. And I'm having a problem accessing my JSON file that I retrieve in my web app server.
JSON:
{
"content": [
{
"info": [
{
"type": "TEL",
"label": "Call Phone",
"id": ...
-1
votes
1answer
61 views
Converting Json Object to String - Objective C
Imagine I make an request to my api that return an mysql_query("Select * from user where id=1").
After the request is done, it returns the user info in json.
I do some debuging, NSlog(@"JSON : ...
0
votes
0answers
23 views
parse soap based web service
I need to Parse Microsoft Soap based web service as a Requirement to submit a Form in iOS native Code .
Can anyone suggest me any Good Tutorial based on that or a inbuilt Parser/ Technique.
Feel Free ...
0
votes
1answer
53 views
Write a markdown parser in Objective C
I am considering writing a markdown parser in Objective C.
Can anyone explain the basic algorithm of doing this?
Is there any library I can look at? I'm not familiar with C. Python or Obj-C ...
1
vote
2answers
45 views
Use of undeclared identifier iOS When downloading Plist
This is driving me crazy, think it's a simple one but any help would be great, attempting to download a remote PLIST and use it to drive config inside the app....
Getting
...
0
votes
1answer
46 views
Search Bar based on json http request with AFNetworking
I have a search bar and I wanted to search a json http url by serial number. So if I execute the following json url:
http://www.ddproam.co.za/Central/Asset/AssetsWithSerial?Serial=S00000001
Actual ...
0
votes
1answer
68 views
App crashing becuase NSArray objectforkey: Objective C
I am trying to parse some Json with Objective C.
My problem is that I am getting the correct json back but when I try parse some of the json my app crashes.
// i will use a code from connect to DB ...
0
votes
1answer
36 views
Parsing Json to handle and direct a user to view controller. Objective C
I have a Login screen and I POST username and password to a login page.
The webservice gives me 2 responses if the Login user details are correct I get a response of back from the request.
...