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. Expected a type"
2) DBRestRequest.h
"Parse issue. Unknown type name 'CGFloat'."
Trouble is easily solved by importing CoreGraphics to DBRestClient.h
@import CoreGraphics;
or
#import <CoreGraphics/CoreGraphics.h>
It's a minor bug, but please fix it. In the corresponding example project "DBRoulette" everything is good, but when you try to manually add the framework to your project, aforementioned errors appear.
Thanks.