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
}
}

 

 

arrow
arrow
    文章標籤
    Unity ios url scheme
    全站熱搜
    創作者介紹
    創作者 Akira Chen 的頭像
    Akira Chen

    akira32 編程之家 pixnet

    Akira Chen 發表在 痞客邦 留言(0) 人氣()