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

  • SEARCH
  • Home
  • 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 9096725
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 16, 20262026-06-16T23:55:33+00:00 2026-06-16T23:55:33+00:00

I have a requirement where the objective C code should consume the WebService and

  • 0

I have a requirement where the objective C code should consume the WebService and the response received in JSON format has to be passed as an argument to a javascript method for further processing.I am using UIWebView which will display the appropriate results after processing JSON response.
The issue arises when i try to pass the JSON string to Javascript method.Javascript method does not simply accept the input.

- (void)connectionDidFinishLoading:(NSURLConnection *)connection
{
    [UIApplication sharedApplication].networkActivityIndicatorVisible = NO;
    NSString *responseString = [[NSString alloc] initWithBytes:[resultData bytes] length:[resultData length] encoding:NSUTF8StringEncoding];
    NSLog(@"%@",responseString);
    [self returnResponseToJavaScriptMethods:responseString];
}


-(void)returnResponseToJavaScriptMethods:(NSString*)theResponse{
    [viewMainWebView stringByEvaluatingJavaScriptFromString:[NSString stringWithFormat:@"retrieveServerResponse('%@')",theResponse]];
}

Is there anything that I am missing out ?? Simple strings are getting passed properly using the same approach.

UPDATE :
Encoding the responseData to UTF8StringEncoding did the trick.

[theResponse stringByAddingPercentEscapesUsingEncoding: NSUTF8StringEncoding]
  • 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-06-16T23:55:35+00:00Added an answer on June 16, 2026 at 11:55 pm

    You probably need to URL-escape the JSON string before posting it to the javascript.

    Try to change:

    -(void)returnResponseToJavaScriptMethods:(NSString*)theResponse{
      [viewMainWebView stringByEvaluatingJavaScriptFromString:
      [NSString stringWithFormat:@"retrieveServerResponse('%@')",theResponse]];
    }
    

    to

    -(void)returnResponseToJavaScriptMethods:(NSString*)theResponse{
      [viewMainWebView stringByEvaluatingJavaScriptFromString:
      [NSString stringWithFormat:@"retrieveServerResponse('%@')",
     [theResponse stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding]]];
    } 
    

    And see if that helps you. Note, however, that there are better (or more surefire) ways to escape a string, for example the one given at this answer: How do I URL encode a string

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have requirement like, suppose I have a 'property' table which has 'ListingKey' field
I am lil bit new to objective C. Here is my requirement. I have
I have requirement where some times I would like to load children as well
I have requirement to disable copy/paste/cut operations on a textbox. For this purpose I
I have requirement, wherein I have to calculate totals for cash and credit cards
I have requirement of specifying web part connections in onet.xml. So when site is
I have requirement as following like showing ABPeoplePickerNavigationController in tabbar based application. I researched
I have requirement to get Facebook friends list with their images. How can I
Hi i have requirement to process large number of files via multithreading in java.
In our project we have requirement that, after receiving sms message from third party

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.