Unable to redirect back to application
Cause
The only possible way to launch another application programmatically (Exposed by Apple) is through URLScheme. This means that the current application must know the URL scheme for launching the application. In your case, the running application does not know the URL scheme of the running application. Thus, there is no way to return to the previous application.
source
share