iPhone YouTube Channel App

Posted by pki on Stack Overflow See other posts from Stack Overflow or by pki
Published on 2011-01-08T03:49:06Z Indexed on 2011/01/08 3:53 UTC
Read the original article Hit count: 231

Filed under:
|
|

What would the steps be to creating an app that connected to YouTube's XML API. Here is my setup currently but it is not working.

  1. App Delegate creates object "YTXMLParser"
  2. App Delegate calls [parser prepAndPrase];
  3. In Prep and Parse the app initiates a NSURLConnection
  4. The app downloads the XML Data using the NSURLConnection well appeneding to NSMutableData
  5. The app parses the data with NSXMLParser
  6. At the end of each "entry" the app adds the current dictionary to the class.
  7. At the beginning of each "entry" the app creates an instance of a dictionary. Here's where i'm stuck. How do I get this data back to my app delegate?

© Stack Overflow or respective owner

Related posts about iphone

Related posts about objective-c