Hi,
My App stopped working after updating to iOS 9 because of the new Apple restriction on canopenurl which forces to register the url schemes you plan to you use in your app.
I followed this tutorial to register the url schemes for my App: https://blogs.dropbox.com/developers/2015/08/important-update-your-core-api-app-for-ios-9/
However, I am still getting the error dbapi-2://1/connect" - error: "(null)" when I I run the app in the simulator and try to connect to dropbox.I supposed that is because I don't have the dropbox app in the simulator.
When I run my app in the device I don't get the error because I have dropbox installed. The problem thought is the App will open dropbox to log the user but then after login, it won't come back to my app and if I come back manually, it won't upload files because it tells me the user is unauthorized.
I read in this post on stackoverflow http://stackoverflow.com/questions/31454686/in-ios9-dropbox-app-is-not-being-opened-instead-webview-is-being-opened-for-log that because of the new restriction, dropbox will have to register url schemes for all apps that support its sdk?
Any advice on how to solve this problem?