I need to implement file transfer in my application and it seems that in Cocoa ConnectionKit is unofficial standard. I was able to compile it but I have struggled finding any documentation or examples of it’s use. The only example I found was outdated and even with modification I could not get it to work. Does anyone know the basic functions (creating connections, uploading…).
Thanks for any help
Its pretty simple once you figure out how its laid out.
Heres the code to create an ftp connection
Then you would interact with the Connection Delegate methods found in CKConnectionProtocol.h
To authenticate to the server above you would use this delegate method where “cred” is an instance of NSURLCredential you have set up with the credentials you need.
For an upload you would just call one of the upload methods specified in CKConnectionProtocol.h inside of a delegate method like below
Then you would receive callbacks as to the status of that upload via the Uploading Methods specified in CKConnectionProtocol.h
Hopefully that helps. Forgive any small errors in the code I typed it out not copy/paste