RuntimePlatform.IPhonePlayer
Описание
В плеере на устройствах iPhone или iPad.
Дополнительные ресурсы: RuntimePlatform, Компиляция в зависимости от платформы.
using UnityEngine;
public class Example : MonoBehaviour { void Start() { if (Application.platform == RuntimePlatform.IPhonePlayer) { Debug.Log("Do something special here!"); } } }