Is there a way to dynamically change the custom URL scheme for an ios application at runtime? I could only find information on how to define custom schemes statically (i.e.,
No, you cannot change custom url dynamically. Custom url scheme is part of Info.plist file contained in the application bundle. The application bundle is read only. You cannot write to/modify the files contained within the application bundle dynamically.