How to fix black screen after App startup in Xamarin.iOS

While using storyboard in Xamarin.iOS sometimes permanent black screen appears. A simple fix is to override the Window property in AppDelegate class.

Black screen appears after App startup while using story board as:

The Application output in Xamarin Studio clearly states:

The app delegate must implement the window property if it wants to use a main storyboard file.

Hence to fix : Go to your AppDelegate class and override the Window property as:

public partial class AppDelegate : UIApplicationDelegate
{
	public override UIWindow Window
	{
		get;
		set;
	}

And that’s it!

See in action:

Dialogue & Discussion