xamarin.forms - Add ios project to xamarin forms solution with droid project -
i've got xamarin forms solution pcl , .droid project. want add ios solution. how do this. add dialog can select add new project, seems add lot more....so solution first created without ios checkmark....
btw. i'm using xamarin studio
best regards
- add new empty ios project.
- add xamarin.forms nuget package.
- substitute appdelegate class one:
[register ("appdelegate")] public class appdelegate : formsapplicationdelegate { public override bool finishedlaunching (uiapplication application, nsdictionary launchoptions) { xamarin.forms.forms.init(); loadapplication (new app ()); return base.finishedlaunching(application, launchoptions); } }
Comments
Post a Comment