I’ve downloaded the iOS CloudApp API files from the CloudApp website. I would like to be able to upload images from an iOS app into the CloudApp service. However, when I open the example application included with the API, I’m presented with a number of errors. The sample project’s app delegate attempts to import a file called “Cloud.h”, which cannot be found. However, this file is visible within the project’s tree structure. Additionally, the file is imported like a framework, using #import <Cloud.h>, and does not import successfully when simply using #import "Cloud.h" either.
Finally, a file called “libcloud.a” appears in the sample project tree, but appears red, marking the item as deleted (I can’t find it anywhere). Also, the downloaded API contains a folder called “Third Party”, which contains two empty subfolders called “IFUnicodeURL”, and “JSON”. Do I need to download the contents of these folders somewhere else?
Xcode is also giving me a warning stating, “Missing dependency target ‘Cloud (from Cloud.xcodeproj)'”.
I’ve attached a screenshot of the sample project tree to the post.
Thanks in advance to any help.


libCloud.a is a file which is generated by the build of Cloud project.
Have you correctly set target dependencies ? If you had, when you build TestHarness, Cloud will build before (if the source changed since the last build) and create libCloud.a.
To set this :
Hope it helps.