So i'm new to objective-c and programming at all ), and i'm trying to understand how to download/upload multiple files to FTP. I started with SimpleFTPSample, but everybody says, that using AFNetworking is much simplier, so how i can upload 2 txt files to FTP using AFNetworking. I found only information about sending to http. Thanks for any help!
相关问题
- CALayer - backgroundColor flipped?
- Core Data lightweight migration crashes after App
- How can I implement password recovery in an iPhone
- State preservation and restoration strategies with
- “Zero out” sensitive String data in Swift
相关文章
- 现在使用swift开发ios应用好还是swift?
- UITableView dragging distance with UIRefreshContro
- TCC __TCCAccessRequest_block_invoke
- Where does a host app handle NSExtensionContext#co
- xcode 4 garbage collection removed?
- Unable to process app at this time due to a genera
- Swift - hide pickerView after value selected
- How can I add media attachments to my push notific
The problem is, basically you can't.
AFNetworking is pretty much HTTP(S) only - no support for FTP. It's not apparent from the name, but if you look over here: https://github.com/AFNetworking/AFNetworking#overview it gets pretty clear.
So you might have to use SimpleFTPSample or check this: https://github.com/nkreipke/FTPManager