close
1.create folder Assets/Plugins/iOS
create a file called Plugin.m and add the code to the file as bewlo:
#import <Foundation/Foundation.h>
#import <UIKit/UIKit.h>
bool IsCanOpeniOSApp(const char* urlScheme)
{
NSString *urlString = [NSString stringWithUTF8String:urlScheme];
if (!urlString) {
return false;
}
return [[UIApplication sharedApplication] canOpenURL:[NSURL URLWithString:urlString]];
}
2. add InitParam.cs file add the code as below:
And then you can check the os is ios and open the existed app by url scheme. Also you can open ios app by the OpenURL.
public class InitParam : MonoBehaviour
{
#if UNITY_IOS
[System.Runtime.InteropServices.DllImport("__Internal")]
private static extern bool IsCanOpeniOSApp(string urlScheme);
#endif
void Start()
{
if (IsCanOpeniOSApp(iosUrlScheme))
{
//do something
Application.OpenURL(iosUrlScheme);//open ios app
}
}
文章標籤
全站熱搜