Ejemplo n.º 1
0
        private void BuildVersion()
        {
            var version = UIDevice.CurrentDevice.SystemVersion;
            var parts   = version.Split('.').Select(int.Parse).ToArray();

            Version = new MvxTouchVersion(parts);
        }
Ejemplo n.º 2
0
 private void BuildVersion()
 {
     var version = UIDevice.CurrentDevice.SystemVersion;
     var parts = version.Split('.').Select(int.Parse).ToArray();
     Version = new MvxTouchVersion(parts);
 }