Xamarin.iOS allows you to create native iOS applications using the same UI controls you would in Objective-C and Xcode, but with the flexibility and elegance of a modern language (C#), the power of the .NET Base Class Library (BCL), and two first-class IDEs - Xamarin Studio and Visual Studio - at your fingertips.
For more information on installing Xamarin.iOS on your Mac or Windows machine, refer to the Getting Started guides on the Xamarin developer center
Version | Release Date |
---|---|
1.0 | 2009-09-14 |
2.0 | 2010-04-05 |
3.0 | 2010-04-16 |
4.0 | 2011-04-06 |
5.0 | 2011-10-12 |
6.0 | 2012-09-19 |
7.0 | 2013-09-18 |
8.0 | 2014-09-10 |
9.0 | 2015-09-17 |
9.2 | 2015-11-17 |
9.4 | 2015-12-09 |
9.6 | 2016-03-22 |
Detailed info for each release can be found here: https://developer.xamarin.com/releases/ios/
nothing | Name | Title |
---|---|---|
Label | lblClicks | [blank] |
Button | clickMe | Click Me! |
clickMe.TouchUpInside += (sender, e) =>
{
totalClicks++;
if (totalClicks == 1)
{
lblClicks.Text = totalClicks + " Click";
}
else {
lblClicks.Text = totalClicks + " Clicks";
}
};