Become a MacRumors Supporter for $50/year with no ads, ability to filter front page stories, and private forums.

iphonejudy

macrumors 6502
Original poster
NSXMLParser *rssparser ;


I want to see the value of rssparser

Can we print value of rssparser ?

I used NSLog(@"rsspaser =%@",rssparser);

But i got error;(sorry for asking this)
 
NSXMLParser *rssparser ;


I want to see the value of rssparser

Can we print value of rssparser ?

I used NSLog(@"rsspaser =%@",rssparser);

But i got error;(sorry for asking this)
NSXMLParser is a utility class. What exactly do you expect it to display when you "print" it?
 
I'd try:
Code:
NSLog(@"rsspaser =%p",rssparser);

That should give you the value of rssparser.
 
Register on MacRumors! This sidebar will go away, and you'll see fewer ads.