コガネブログ

平日更新を目標に Unity や C#、Visual Studio、ReSharper などのゲーム開発アレコレを書いていきます

【Unity】Unity 製の iOS アプリで SFSafariView を使用できるようにするパッケージ

リポジトリ

使用例

#if UNITY_IOS

using Kogane;
using UnityEngine;

public sealed class Example : MonoBehaviour
{
    private void Start()
    {
        SFSafariView.OpenURL( "https://www.google.co.jp/" );
    }
}

#endif
#if UNITY_IOS

using Cysharp.Threading.Tasks;
using Kogane;
using UnityEngine;

public sealed class Example : MonoBehaviour
{
    private async UniTaskVoid Start()
    {
        await SFSafariView.OpenURLAsync( "https://www.google.co.jp/" );
        Debug.Log( "閉じました" );
    }
}

#endif