How to switch a view after i parse data?

Posted by charles Graffeo on Stack Overflow See other posts from Stack Overflow or by charles Graffeo
Published on 2010-04-28T19:14:13Z Indexed on 2010/04/28 19:17 UTC
Read the original article Hit count: 333

Filed under:
|
|
|

OK my problem is this, i parse a document and after the document is parsed then i want to load to the next view sounds simple but ive been here for like 4 hours playing with code and id appreciete any help u can give me atm.

k heres my parserDidEndDocumentCode - (void)parserDidEndDocument:(NSXMLParser *)parser{ IpadSlideShowViewController temp=(IpadSlideShowViewController)[[IpadSlideShowViewController alloc]init]; [temp performSelectorOnMainThread:@selector(switchViews) withObject:nil waitUntilDone:TRUE]; [temp release]; }

now what i think should happen is my code will switch the view after it parses the documentation, n its not doing it idk why

© Stack Overflow or respective owner

Related posts about Xml

Related posts about switching