anyone has usable webdav client library or framework for iphone app?
I need to send a file to webdav server from iphone app, it's include the function of create folder, update file, delete file. so i want a webdav client framework for iphone or static library, which could used at my iphone app.
- I have found some code, such as ConnectionKit, it hasn't been updated in years, and i have not passed the compiling for iOS device 4.1.-
- I also check the c library, such as neon, but i could not port it as static library for iOS.-
- I also checked Davlib, since it had been used MAC os, but i don't not know how开发者_StackOverflow社区 to use CodeWarrior-
anyone have idea or anyone has the useful webdav? please help me.
Thanks!
new tags: conectionkit davlib
I got the flycode WebDAV implementation working on an iPhone with minimal changes, though I never used it for production code.
I'm currently having good luck with this client: http://code.google.com/p/wtclient/.
I just started using DZWebDAVClient
. It needs AFNetworking
to work though.
Had no issues setting it up and has a block based API.
https://github.com/zwaldowski/DZWebDAVClient
Another recommendation i found elsewhere is ConnectionKit
https://github.com/karelia/ConnectionKit
(Reposting my answer to a different question - WebDav client library for iOS)
精彩评论