I have been looking for hours and didn't find anything so I decided to give up and ask for your precious knowledge ;)
开发者_如何学编程In order to make my code cleaner, I would like to implement the delegate methods of NSXMLParser in another file ... but I couldn't find any tutorials ...
Could someone explain me briefly how to do that ?
Cheers mates,
Gauthier.
Create a Class that implements the methods you want your parser to respond to, then set the delegate of your NSXMLParser instance to an instance of your new Class.
精彩评论