using:
[self performSelector:@selector(performRSS:) withObject:<nil afterDelay:0.3f];
or
[NSThread detachNewThreadSelector:@selector(performRSS:) toTarget:self withObject:nil];
and place the associated RSS feed code in a separate function called "performRSS".
source
share