我有多个NSXMLParser
. NSOperationQueue
当NSXMLParser
调用时parserDidEndDocument
我需要区分 thou 解析器。我以为我可以使用类似的东西,userInfo
但没有这样的东西。有什么方法可以区分解析器吗?
编辑: Thou 解析器具有相同的校准委托parserDidEndDocument
结论:
@interface MyParser : NSXMLParser
@property (nonatomic, retain) NSString *action;
@end
@implementation MyParser
@synthesize action=_action;
@end