Tagged Questions
0
votes
1answer
30 views
getting JSON data without object mapping using RestKit 0.2
I'm trying to call a RESTful web service with RESTKit 0.2 that returns only a string, but the RKResponseDescriptor class forces me to use a mapping with its method responseDescriptorWithMapping in ...
-1
votes
2answers
101 views
Need help for parsing JSON
I'm learning how to parse JSON. I've made the raywenderlich tutorial but I'm still lost with some steps. I got my own JSON :
{
"Albumvideo":{
"album01":{
...
-1
votes
1answer
14 views
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": {
...
0
votes
2answers
27 views
using json parser how to access the tableview cell and display corresponding PDF Files
Hi i am developing one application using UITableview. My requirment is to click the tableview cell to navigate detailview controller and display corresponding PDF File.
I have completed UITableview ...
0
votes
2answers
37 views
Converting JSON Data from NSData to NSDictionary
I have a PHP service that returns me the following response in NSData format. After converting the same into NSString using:
NSString *html = [[NSString alloc] initWithData:data ...
1
vote
2answers
102 views
Displaying JSON objects
I've done the Raywenderlich tutorial about JSON in iOS but I got difficulties to adapt it to my own JSON file. Here is my JSON:
{
"Albumvideo":[
{
"titre": "Publicité",
...
0
votes
1answer
24 views
can i implement facebook/twitter login in reddit login api
i am developing iPhone Application and i want to implement Sign in through Facebook/twitter account is it possible user can sign in Reddit through Facebook/twitter account.
0
votes
0answers
61 views
parse json for uitableview cell
I have an application using UITableview application. If I click the UITableViewcell that bring JSON data. I created a UIViewController to display the information on the line that was selected in ...
0
votes
2answers
35 views
Trouble working with nested JSON objects on Objective-C
On my iPhone app, I'm getting this response from the server:
I need to save this data to disk, so it can be accessed while offline, and am doing it with NSKeyedArchiver.
I need to save each ...
0
votes
0answers
27 views
JSON proxy classes generator like SudzC
Is there a service that generates JSON proxy classes exactly like the one with SudzC does with SOAP?
if not, what is the best and simplest library to use to handle JSON web services in iOS?
1
vote
1answer
59 views
NSArray with online content
I'm working on an app to show a list of videos (tableView) and I would like to be able to modify the list without making a new update of the app everytime I change one thing.
I've heared about JSon ...
-2
votes
0answers
31 views
how to use Reddit api for rss feeds in iPhone Application, please provide some examples for better understanding
how to use Reddit API for rss feeds in iPhone Application, please provide some examples for better understanding.
0
votes
1answer
40 views
Youtube search api with json for iOS
is there any api for youtube like
https://api.dailymotion.com/video/VIDEO_NAME
or what will you suggest me to do, i am sending just a string to api which returns me list of all videos with ...
0
votes
0answers
62 views
Twitter > AFnetworking > Custom Cell
I am using SEMasonryView to get a pinterest style view in my iOS app but I can't seem to connect the JSON to each individual boxes. Everytime I run the code it just returns
"2013-06-06 ...
0
votes
0answers
32 views
JSON Twitter iOS
I am using SEMasonryView to get a pinterest style view in my iOS app but I can't seem to connect the JSON to each individual boxes. Everytime I run the code it just returns
"2013-06-06 ...
0
votes
3answers
66 views
Sort NSDictionary in ascending order
I am trying to sort an NSDictionary in ascending order. I am using this code:
NSDictionary *valDict = self.mGetDataDict[key][rowKey];
for (NSString *valueKey in
[[valDict allKeys] ...
0
votes
2answers
42 views
Strange response from NSData fetching from JSON
Trying to fetch value from json, response string showing correct fetched data, but when NSData convert and put it in to NSDictionary, two values get interchanged.
Below is code tried.
...
-5
votes
0answers
61 views
JSON value returning null but response string has values in it [closed]
Trying to fetch value from json returning null, but response string not null fetching value.
Below is code tried.
+(NSMutableDictionary *)seatMap:(NSDictionary *)seatId eventId:(NSDictionary *)eid
{
...
-4
votes
1answer
102 views
How to talk to web services [closed]
Before I ask my question:
For quite some time I search on this site and found the answers for my questions. I really love this site. Now I have a questions that is still unanswered. So I thought to ...
1
vote
5answers
102 views
ios - How to load data from JSON url in UITableView?
I'm new to iPhone development,I'm trying to bind data from JSON Url in UITableview, but I'm getting an error in the below code.
- (void)viewDidLoad
{
SBJsonParser *parser = [[SBJsonParser alloc] ...
-1
votes
1answer
67 views
Vimeo Search API with JSON for iOS [closed]
What is VIMEO api (JSON) for searching videos by title in iOS from where i can get their id's to play them? like google,youtube,dailymotion and many other sites. i could not found it on their site in ...
0
votes
3answers
114 views
How to fetch dynamic JSON
I am trying to fetch the JSON below, as it's tags are all dynamic (not fixed). I don't know how to fetch them properly.
{
Level1: {
row1: {
1: "on",
2: "off",
3: "off",
...
0
votes
4answers
73 views
How to send UIImage in JSON format, by filling a NSDictionnary
I'm trying to send data to a server with JSON.
I am able to create my NSDictionnay with my objects and key parameters.
But I want to send my picture, and the picture is UIImage.
NSDictionary* ...
-2
votes
0answers
33 views
Display the locations on mapview through json parsing [closed]
I have to display the locations on map view with corresponding address.This location lat and long coming from json web services. once please send me the solution. If any possibility please send me the ...
-9
votes
1answer
57 views
About push notification on ios [closed]
How can i approach to aim my project in iphone. It is totally depends upon map view functionality through web services.My project is looking like the below link. Once please observe the below you ...
-4
votes
6answers
128 views
How to parse this json in uitableview? [closed]
I am new in iOS. I wanna parse following json in my UITableView, but I don't know how to do that. I know json parsing using NSURL, but in this direct json parsing I am facing problems .please help..
...
1
vote
3answers
102 views
iOS send string to JSON Server
im struggling this for several hours, i want to send a json string to an asp.net server, but i always get null response. Is there anything wrong with my code?or problem in the server side?
thanks a ...
0
votes
2answers
35 views
How to Parse Month and Year from Twitter API returned JSON
Suppose Twitter returns Wed Sep 14 18:52:57 +0000 2011in JSON format. How do i go about parsing it so that the display looks something like Sep 2011.
Im aware of DateFormatter. I tried the following ...
-1
votes
0answers
28 views
how to display the AVAudioplayer in UIViewController
I am developing AVAudioplayer app according to my project requirement. In audioplayer iam using storyboard to develope coding. I can drag and drop of all buttons like play button, pause button,forward ...
0
votes
1answer
44 views
using storyboard how to play AVAudioPlayer
I am developing AVAudioPlayer according to my project requirement. In audioplayer iam using storyboard to develope coding.In my audio player using json parser to retrieve the urls from server.And ...
0
votes
1answer
93 views
Post array of object to WCF Rest service using JSON?
Need to send a complex object having nested IList from Iphone in JSON format to WCF REST service. The Complex Object is defined as following:
public class BatchData
{
long BatchID;
...
0
votes
0answers
32 views
Monotouch SerializeObject randomly throws exceptions
This following code throws an exception once in a while, what makes it much harder to understand the problem.
GetFeaturedApiRequest request = new GetFeaturedApiRequest ();
request.RequesterID = ...
0
votes
2answers
74 views
how to check key available or not in json response in ios
After i request to the server , i recieve two different type of response
if it is success response will be this
...
1
vote
1answer
158 views
AFNetworking - JSONRequestOperationWithRequest success on 400 status code
I'm using
NSMutableURLRequest *request = [self requestWithMethod:@"GET" path:@"paths/" parameters:params];
AFJSONRequestOperation *jsonRequest = [AFJSONRequestOperation
...
-3
votes
1answer
80 views
fetch the data from Array [closed]
I am developing AVAudioPlayer app in IOS 6 according to my project requirement.
I can retrieve the audio urls from server. This task successfully completed.
But i have small doubt. How to fetch the ...
0
votes
0answers
70 views
Using json parser to retrive the data from server
I am developing AVAudioPlayer app in iOS6 according to my project Requirement.
I used JSON parser to retrieve the songs from server side.
I completed JSON parser completed successfully, But I have ...
0
votes
1answer
58 views
Request of JSON returns Exceptions
- I am sending a JSON request by converting it from an array, to a remote Windows Server 2008 R2, running a .NET webservice.
- If my JSON request is successfully executed then i will be replied with ...
-1
votes
1answer
83 views
Getting an error on JSON parsing in ios
I am trying to send the data to server but getting the response null as server connect successfully
it's showing an folowing error:-
"-JSONValue failed. Error trace is: (
"Error ...
0
votes
2answers
32 views
How to load image to collectionview from url obtained from json
I have an IOS app that is using RestKit to pull json formatted data from a server into a CoreData Entity. One of the attributes in the data is a URL for the image associated with the particular ...
0
votes
1answer
36 views
How to connect the first responder to viewcontroller
I am developing AVAudioplayer in IOS6 according to my app requirement. My code is finished. I want to connect first responder to viewcontrollerXIB. But I don't know how to give the connection from ...
0
votes
1answer
21 views
How to recieve image in a php server from an iphone
I want to send a picture of my app to a web server. The problem is that I'm new to web services.
My app sends (via POST) an image as nsdata using json, but I don't have a clue how to convert this ...
1
vote
1answer
75 views
iOS JSON parse return null when called for second times
Hi i'm totally newbie on obj-c.
I got some weird result on json.
I have a json function called by NSThread,
When i first run my json function it's showing a result, but when the function called for ...
1
vote
1answer
39 views
got stuck converting MySql output in JSON array with php
I am making an iphone app. a part of that app allows users to search for a company on location.
I have a MySql database containing the companies that can be searched for, and a php file on my website ...
0
votes
2answers
205 views
Special characters while parsing Json in iOS.
I am trying to send a string to server by using Json Parsing. My string contains a lots of special characters like ó,æ, ø, å and many more. When i am sending the data to server without any special ...
-4
votes
1answer
72 views
How to make phone call button? [closed]
I am stacking in phone call button. The data from my project is parsed from JSON. In the code bellow, I get the data of phone number.
- (void)loadData
{ // 1
NSData *data = [NSData ...
1
vote
3answers
113 views
Send Nested JSON using AFNetworking
To send registration data to server, I am using JSON is in following form:
{"regData": {
"City":"Some City",
"Country":"Some Country",
"Email_Id":"abc@gmail.com",
"MobileNumber":"+00xxxxxxxxxx",
...
0
votes
1answer
162 views
NSJSONSerialization JSONObjectWithData:options:error: encoding issue
In my code, I download a JSON data encoded in UTF8, which is the ideal to work with NSJSONSerialization, but when I get the parsed object, it's full of encoding problems such as:
"Jo\U00e3o e ...
-3
votes
1answer
74 views
What differences are there between NSURLConnection and AFNetworking framework, which one is best? [closed]
There are multiple ways of consuming JSON services in an iOS application,one is using NSJSONSerialization which depends upon NSURLConnection, another is a third party framework called AFNetworking. ...
-2
votes
2answers
91 views
how to access any method only once while launching the app for first time
I have a web service to fetch the data in the JSON form. I am calling this service everytime the application is launching (inside appDidFinishLaunching method) and storing it in a local file. I want ...
0
votes
3answers
43 views
Retrieve Values from Dictionary inside NSDictionary in iOS
How can I retrieve values from the JSON below?
"ItemID": 115,
"Name": "Test Items for Receive",
"Description": "Recevive",
"ItemCode": "AAA-RC-IT1",
"Quantity":9000,
"WarehouseLocationID": ...



