Hi,
I am trying to list all pdf's in my Dropbox. I am getting the results back so my question is how do I handle the response?
[[client.filesRoutes search:@// query:@.pdf]
setResponseBlock:^(DBFILESListFolderResult *response, DBFILESListFolderError *routeError, DBRequestError *networkError) {
if (response) {
NSArray<DBFILESMetadata *> *entries = response.entries; //CRASHES HERE 'unrecognized selector'
}