我在Cloudant数据库中有一个文档。如何使用Objective-C修改文档?
答案 0 :(得分:2)
Cloudant基于CouchDB,CouchDB的核心思想之一是所有请求都是基于HTTP的。因此,您可以像通常的HTTP请求一样访问coudant。
答案 1 :(得分:1)
以下是CouchDB客户端Objective-C库的示例:
答案 2 :(得分:0)
使用链接https://github.com/gunjankumr/CouchDBDemo获取一个完整的项目来创建,插入,删除和更新CloudAnt文档。
答案 3 :(得分:0)
You can either roll your own HTTP requests using NSURLSession, or there are a number of libraries available to do this, cloudant have an official Objective-C library in ObjectoveCloudant which can be installed via CocoaPods.