Lib xml делегат селектор не работает
У меня есть одна проблема в парсере lib xml.
В конце документа ниже код здесь
-(void)endDocument
{
NSDictionary *userInfo = [NSDictionary dictionaryWithObject:@"Failed with 404 or 500"
forKey:@"error_message"];
NSError *error = [NSError errorWithDomain:@"ParsingDomain"
code:500
userInfo:userInfo];
SEL selector = @selector(parse:encounteredError: forId: forObj:);
NSMethodSignature *sig = [(id)self.delegate methodSignatureForSelector:selector];
if(nil != sig && [self.delegate respondsToSelector:selector]) // this codition is failed
{
printf("\n In the selector invocation");
NSInvocation *invocation = [NSInvocation invocationWithMethodSignature:sig];
[invocation retainArguments];
[invocation setTarget:self.delegate];
[invocation setSelector:selector];
[invocation setArgument:&self atIndex:2];
[invocation setArgument:&error atIndex:3];
[invocation setArgument:&Id atIndex:4];
[invocation setArgument:&obj atIndex:5];
[invocation performSelectorOnMainThread:@selector(invoke) withObject:NULL waitUntilDone:NO];
}
}
Я прокомментировал неисправное состояние в приведенном выше коде.
Спасибо, Мадан Мохан.
1 ответ
Решение
Я думаю, что есть проверка орфографической ошибки в этой строке
SEL selector = @selector(parse: встретил Error: forId: forObj:);
использовать парсер вместо разбора
!!!CHEERS!!!