Guest User

Untitled

a guest
Jul 18th, 2018
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. - (void)connection:(CPURLConnection) connection didReceiveData:(CPString)data
  2. {
  3. //This method is called when a connection receives a response. in a
  4. //multi-part request, this method will (eventually) be called multiple times,
  5. //once for each part in the response.
  6. projects = JSON.parse(data);
  7. [projectsTable reloadData];
  8. }
Add Comment
Please, Sign In to add comment