Sorry, my question is not clean. i want to do the Iphone application A view go to B view, but when i click the button go B View the A View data will remove.
So i would like to know if i want to B View go back A View , the A View can keep the data?
for example : A View doing some job, but i click the button go B View. this time i go back A
View, the A View can still doing. This task is possible? not use navigation bar and tar bar only use button to transfer.
Thank you some one help.
i mean view controller thank you very much
As I understand you need launch some background task in view controller A and go to view controller B?
If I right you can do it with these steps:
performSelectorInBackground:@selor another way. Also you need somehow indicate when background task is done.presentModalViewController:(UIViewController *)viewController animated:(BOOL)animated. Your background task in view controller A continue executing.