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
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.
- App Delegate creates object "YTXMLParser"
- App Delegate calls [parser prepAndPrase];
- In Prep and Parse the app initiates a NSURLConnection
- The app downloads the XML Data using the NSURLConnection well appeneding to NSMutableData
- The app parses the data with NSXMLParser
- At the end of each "entry" the app adds the current dictionary to the class.
- 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