I am using NSURLConnection for loading the data and parse with nsxmlparser. Currently I let the whole data is loaded then I parse it but for improving the speed I would like to know how I can parse section of data which is received in didReceiveData delegate method. If I just move my parsing function in this method I would get error since when it breaks to different parts it doesn't have XML correct format or...
I would appreciate if some one could help me in anyway in case of improving the speed.