XML parsing Using TBXML need to handle Network Time out in IOS?

260 Views Asked by At

Currently parsing remote content straightly using TBXML by initwithURL method. But while parsing data if network time out occurs parsing stopped intermediately. Don`t know how to handle that scenario , at the same time no delegate will call.

If any one know the solution, please help me out.

Note : XML content is very large about half million of data , parsing is also happen in background thread.

Thanks

1

There are 1 best solutions below

3
On

Why don't you use NSURLConnection to download xml data and then use

TBXML * tbxml = [[TBXML tbxmlWithXMLData:myXMLData] retain];