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 7047235
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 28, 20262026-05-28T02:44:48+00:00 2026-05-28T02:44:48+00:00

I am sending a json string from my iphone application to server using ASIFormDataRequest.

  • 0

I am sending a json string from my iphone application to server using ASIFormDataRequest. Sometimes when that string is too big, iphone doesn’t send it. request setTimeOutSeconds is 60 seconds. I want to make chunks of my json string when its big and then send those chunks to server. i can not use componentsSepratedByString: method. How can i make an array of substrings of json string. lets say that every substring length should be 200. Thanks in advance.

  • 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-05-28T02:44:48+00:00Added an answer on May 28, 2026 at 2:44 am

    Try something like this:

    NSString *longString = <SOME_LONG_STRING>;
    NSUInteger chunkSize = 200;
    
    NSMutableArray *chunks = [[NSMutableArray alloc] initWithCapacity:0];
    
    NSUInteger length = [longString length];
    NSUInteger currentPosition = 0;
    
    while (currentPosition < length) {
        NSUInteger thisLength = MIN(chunkSize, length - currentPosition);
        NSString *thisChunk = [longString substringWithRange:NSMakeRange(currentPosition, thisLength)];
        [chunks addObject:thisChunk];
        currentPosition += thisLength;
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am sending a string down from a websockets server to my client that
Am am successfully parsing and sending JSON values from my client for my server
I am preparing and sending a JSON string from my PHP file to my
I'm struggling getting the JSON string that was sent from a web page to
I'm writing an application which uses ASP.NET MVC with JSON.NET as the server, sending
In an Android Application - I am sending a Json String like this {restarutant:{name:Chung
Restful Service (from Server) @GET @Produces(application/json) @Consumes(application/json) @Path(/getStatus/) // server:8080/server/rest/admin/status/whatSoEver public void getStatus( @Context
I'm having difficulty parsing some JSON data returned from my server using jQuery.ajax() To
i am trying to send a json string from my android client to my
I'm trying to send json string in the get request to the server, here

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.