views:

1442

answers:

1

Is there any way I can upload a selected image to TwitPic.com and get the images page URL?

Here is the API page for TwitPic.com:

http://twitpic.com/api.do

+1  A: 

The API indicates it returns the URI in a XML document. You can use an NSURLRequest to post the image data, and use NSXMLParser to get the resulting URL.

Jesse Rusak