Sorry for the newbie question (maybe). I'm developing an app for ios and i'm trying to execute an external xml reading out of the main thread in order not to freeze the ui while the call is doing its magic.
This is the only way i know to made a process not to execute in the main thread in objective c
[self performSelectorInBackground:@selector(callXml)
withObject:self];
so i did incapsulate my call into a function
- (void)callXml{
[RXMLElement elementFromURL:[NSURL URLWithString:indXML]];
}
Now i have to make the string indXML be a parameter of the function in order to call different xml as i need to. Something like
- (void)callXml:(NSString *) name{
[RXMLElement elementFromURL:[NSURL URLWithString:indXML]];
}
In this case, how the call to performSelector change? If i do it in the usual way i get syntax errors:
[self performSelectorInBackground:@selector(callXml:@"test")
withObject:self];