Hi guys,
I am working on an iphone application. Application uses .net web service to perform an operation and return the status either "Success" or "Failure".
I am getting this status in xml parser didEndElement like
if( [elementName isEqualToString:@"OperationStatusResult"])
{
}
I am trying to show an UIAlert view if status is failure within didEndElement but it does not show. Is there anything I am missing here.
Any help would be greatly appreciated.
Thanks