Example #1
0
        public override void ViewDidLoad()
        {
            base.ViewDidLoad();
            // Perform any additional setup after loading the view, typically from a nib.

            standardUserDefaults = NSUserDefaults.StandardUserDefaults;

            selectedType   = (VisionType)(int)standardUserDefaults.IntForKey(nameof(VisionType));
            selectedScript = (TextRecognitionScript)(int)standardUserDefaults.IntForKey(nameof(TextRecognitionScript));

            SettingsTable.ReloadSections(NSIndexSet.FromNSRange(new NSRange(0, 2)), UITableViewRowAnimation.Automatic);
        }