Xamarin.Forms to native Xamarin.iOS conversion
Steps:
Add storyboard and use native controls in your Forms.iOS project.
Update the info.plist to use this newly added storyboard as “Main Interface”.
Modify the AppDelegate by extending UIApplicationDelegate and overriding Window Property as:
public partial class AppDelegate : UIApplicationDelegate
{
public override UIWindow Window
{
get;
set;
}
public override bool FinishedLaunching (UIApplication app, NSDictionary options)
{
return true;
}
}
See in action here:
Why override Window property? Check this out.
Nitin Pakhide BLOG
Xamarin Forms Xamarin native convert