You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
iOS 9 introduces LSApplicationQueriesSchemes to allow apps to query if other apps are installed. This project provides two sample apps which are querying for each other. To the moment I didn't get this example run. Thus I use these two apps to communicate with Apple and others.
2
+
iOS 9 introduces LSApplicationQueriesSchemes to allow apps to query if other apps are installed. This project provides two sample apps TestA and TestB which are querying for each other.
3
+
4
+
In its info.plist file TestA defines the following URL schemes:
5
+
6
+
'''
7
+
<key>CFBundleURLSchemes</key>
8
+
<array>
9
+
<string>testA</string>
10
+
</array>
11
+
'''
12
+
13
+
TestB wants to check if TestA is installed by calling
0 commit comments