Most of the information I've found online is dealing with Xamarin Forms, Is it possible to toggle between Light & Dark Mode using only Xamarin.iOS?
I've added this piece of code to my ViewDidLoad Method in one of my controllers to change it to Dark Mode but I do not know how to toggle it back to Light mode if someone could please share some thoughts on how this could be done?
`public override void ViewDidLoad() { UILabel fetchDataLabel; UIView loadingView; **this.OverrideUserInterfaceStyle = UIUserInterfaceStyle.Dark;** base.ViewDidLoad();`