Unity 6.3
0 онлайн 67 гостей 3 в системе
Вход

PlistElement.AsInteger

Declaration

public int AsInteger();

Возвращаемое значение

инт Значение целочисленного элемента.

Описание

Функция удобства для преобразования в целое число.

Метод эквивалентен ((PlistElementInteger) el).value. Бросает исключение, если элемент не является PlistElementInteger.

using System;
using System.Collections.Generic;
using UnityEditor;
using UnityEditor.Callbacks;
using UnityEditor.iOS.Xcode;

public class PlistElementAsIntegerExample { [PostProcessBuild] public static void AsIntegerExample(BuildTarget buildTarget, string pathToBuiltProject) { if (buildTarget == BuildTarget.iOS) { // Read the contents of the Info.plist file that was generated during the build string plistPath = pathToBuiltProject + "/Info.plist"; PlistDocument plist = new PlistDocument(); plist.ReadFromFile(plistPath); // Get root plist element PlistElementDict rootDict = plist.root; // Retrieve the "UIDeviceFamily" entry and convert it to "int" using the helper AsInteger method int deviceFamily = rootDict["UIDeviceFamily"].AsInteger(); // Check if both iPhones and iPads are supported if (deviceFamily == 2) { // Do something } // If you make any changes, don't forget to save them to the Info.plist file plist.WriteToFile(plistPath); } } }