Creating an iOS application using Xamarin Forms
Many developers want to try their hand at writing an iOS application. The big drawback has always been learning a new programming language and a new IDE. For some, it is probably not an issue as they want to learn something new. But for many .NET developers, being able to stick to an IDE and programming language they know is immensely empowering. Well, this is exactly what Xamarin Forms and Visual Studio achieve. It gives .NET developers the ability to use Visual Studio to write applications that can be run cross-platform easily, without having a separate code base for each.
Getting ready
You will need to have a Mac running OS X. You will only need this for debugging iOS applications.
How to do it…
- In Visual Studio 2015, create a new project. From the installed templates, choose Cross-Platform and select Blank App (Xamarin.Forms.Portable). This will allow us to create an application that will be cross-platform and not specific to a single...