I have a method that calls [client.filesRoutes createFolder:folderPath]. In its response block a call is made to [client.filesRoutes search:parentPath query:filename]. In its response block another call is made to [client.filesRoutes createFolder:folderPath] (checking for another folder) and so forth recuresively until everything gets unwound. The first call works (response block is called) but the second (recursive) call does not result in its response bock being called. For example, the [client.filesRoutes createFolder:folderPath] call created the folder but the response block is never called. I am updating previously written code that worked fine when DBRestClient callbacks were used. Not sure if this has something to do with calling Dropbox methods from within a response block that has a response block itself.
Thank you.