Hello,
i got a little problem with the UIPickerViewer.
In "viewDidLoad" I am calling the SOAP stuff to get the XML from an webservice.
Code:
... NSURLConnection *theConnection = [[NSURLConnection alloc] initWithRequest:theRequest delegate:self] ....
The parsing of the XML-File works great and without problems and the load of the UIPickerViewer as well.
The only problem I got, is that the UIPickerViewer is load BEFORE the parse of the XML-File, but I want it to load AFTER the parse, because the rowTitles depends on the XML-File.
I tried to reload the UIPickerviewer, but that won´t work as well.
Code:
[pickerView reloadAllComponents];
Kind regards