Need to see if your shared folder is taking up space on your dropbox 👨💻? Find out how to check here.
Forum Discussion
Aibek D.
11 years agoNew member | Level 1
Dropbox iOS SDK: I had to manually add CoreGraphics to make it work
Hello.
I'm using Xcode 6.1.1. I have installed Dropbox SDK version 1.3.13 in my project and every time I tried to compile the project I was getting these errors:
1) DBRestClient.h
"Parse issue...
Greg-DB
Dropbox Community Moderator
11 years agoThanks! That's very helpful. I believe I've tracked this down. We'll look into fixing this on our side in the SDK itself, but to quickly fix this in your project, change this:
#import <DropboxSDK/DropboxSDK.h>
#import "AppDelegate.h"
to:
#import "AppDelegate.h"
#import <DropboxSDK/DropboxSDK.h>
This is because the SDK needs UIKit imported, which is done by default in AppDelegate, but it will fail if you import DropboxSDK before AppDelegate.
About Dropbox API Support & Feedback
Find help with the Dropbox API from other developers.
The Dropbox Community team is active from Monday to Friday. We try to respond to you as soon as we can, usually within 2 hours.
If you need more help you can view your support options (expected response time for an email or ticket is 24 hours), or contact us on X, Facebook or Instagram.
For more info on available support options for your Dropbox plan, see this article.
If you found the answer to your question in this Community thread, please 'like' the post to say thanks and to let us know it was useful!