Skip to content

Instantly share code, notes, and snippets.

@jlebrech
Created December 31, 2010 14:33
Show Gist options
  • Save jlebrech/761053 to your computer and use it in GitHub Desktop.
Save jlebrech/761053 to your computer and use it in GitHub Desktop.
- (void)connection:(CPURLConnection) connection didReceiveData:(CPString)data
{
//This method is called when a connection receives a response. in a
//multi-part request, this method will (eventually) be called multiple times,
//once for each part in the response.
projects = JSON.parse(data);
[projectsTable reloadData];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment