Can I use .Net languages ​​to develop iPhone applications?

I'm interested in iPhone development. Are there any products or platforms that allow you to develop iPhone applications using .NET languages ​​such as C #?

+7
source share
2 answers

The Xamarin team, previously Novell employees worked on Mono , developed cross-platform compilers and battery life for iOS and Android .

While he has not yet created the utopia of developing mobile application applications anywhere, this is definitely a step in the right direction and perhaps better than HTML5 solutions.

I found that it is best to write core libraries (only application logic, no user interface code) that compiles in .NET and Mono. Then write the user interface layers corresponding to each platform that you want to support. Using the MVC pattern, you can abstract things so that the code is very reusable.

+12
source

There are two platforms called MonoTouch and Mono , through which you can develop an iOS application using C # and .NET.

I suggest this book so you can explore mobile development in C #.


If you are interested in HTML and javascript , the following sdk will help you.

+5
source

All Articles