public static void Create(IOSApplicationContext context) { if (Current != null) Current.Dispose(); Current = new TabOrderManager(context); }
public static void Create(IOSApplicationContext context) { if (Current != null) { Current.Dispose(); } Current = new TabOrderManager(context); }
private void InitApplication() { _settings = new Settings(); _settings.ReadSettings(); D.Init(_settings.Language); _exceptionHandler = new ExceptionHandler(_settings, this); _context = new IOSApplicationContext(this, _rootController, _settings, _exceptionHandler); NotificationManager.SetApplicationContext(_context); NotificationManager.InitRemoteNotifications(); HandleLastError(StartApplication); }
public void Dispose() { _items.Clear(); _items = null; _context = null; if (_accessory != null) { _accessory.Dispose(); _accessory = null; _back.Dispose(); _back = null; _next.Dispose(); _next = null; _cancel.Dispose(); _cancel = null; } }
public CameraProvider(UINavigationController controller, IOSApplicationContext context) : base(controller, context) { }
public DialogProvider(IOSApplicationContext context) { _context = context; }
public void SetApplicationContext(IOSApplicationContext applicaitonContext) { _applicaitonContext = applicaitonContext; }
private TabOrderManager(IOSApplicationContext context) { _context = context; }
public ImagePickerProvider(UINavigationController controller, IOSApplicationContext context) { _controller = controller; Context = context; }
private void InitApplication() { _settings = new Settings(); _settings.ReadSettings(); D.Init(_settings.Language); _exceptionHandler = new ExceptionHandler(_settings, this); _context = new IOSApplicationContext(this, _rootController, _settings, _exceptionHandler); NotificationManager.SetApplicationContext (_context); NotificationManager.InitRemoteNotifications(); HandleLastError(StartApplication); }