How can I wait the end of an ftp transfer on my iPhone app, if I have to do many ftp transfers in sequence?
I call the same method to make the transfers, changing the name of file.
[Ftp receiveFtp:file1];
[Ftp receiveFtp:file2];
[Ftp receiveFtp:file3];
Here, for example, I should wait the end of the first method before calling the second. Any ideas?
Thanks, Andrea