vote up 10 vote down star
2

How could I create iPhone applications using the .NET development environment?

flag

0% accept rate

7 Answers

vote up 17 vote down

The Mono team are working on 'static compilation' which allows mono apps to be run on a non-jailbroken iPhone. In short this works by running a cross-compiling JIT step as part of the build process to generate a native exe.

There was a demo of this at the PDC ... see Miguel de Icaza's blog.

link|flag
1  
This is already available. monotouch.net – jstawski Sep 19 at 23:39
vote up 9 vote down

The answer is MonoTouch From Novell - http://www.mono-project.com/MonoTouch. Beta version will be released on August 2009 and commercial released will be on September 2009.

link|flag
vote up 4 vote down

If you just want to leverage some knowledge of c#, you can use Unity. Games developed with Unity (http://unity3d.com) use Mono with an AOT (ahead-of-time compiler) to compile mono bytecodes to ARM. (The apps created by Unity have a shell that is, in fact, a fairly conventional cocoa touch app created in Objective-C++ and XCode.) It's not a dot net app, but you can use your existing knowledge of c#.

link|flag
vote up 4 vote down

You don't. You need Xcode on Mac OS X to write iPhone applications.


Update: 9-20-2009

This was once true. See comments below for more info.

link|flag
This used to be true. Not anymore: monotouch.net – jstawski Sep 19 at 23:40
vote up 1 vote down

As far as I know, Apple does not support the Microsoft .Net development environment.

At most you could hope for is installing mono on a jailbroken iphone. Not that I condone this and you do so at your own risk.

IPhone applications are developed using Objective C or Ruby.

link|flag
Hey Xian - got a link for using Ruby on the iphone?? i hadn't heard of that. – CraigD Aug 24 at 23:07
I think I was getting ahead if myself when I said that (was thinking of mac development with RubyCocoa), but I have heard that a guys called Takuma may have cracked it wiki.github.com/takuma104/iphone-rubycocoa – Xian Aug 26 at 21:07
vote up 1 vote down

The only supported way to develop native iPhone applications is the iPhone SDK. It runs on Mac OS X only, and supports development using the Cocoa Touch frameworks and the Objective-C 2.0 language.

link|flag
not anymore... monotouch.net – jstawski Sep 19 at 23:41
vote up 0 vote down

There are ways to get other languages to work, they will - however - almost certainly not be accepted to the AppStore and will break with future updates. Generally it is better to use a screw driver to screw something into a hole than to thwap it repeated with a hammer attached to a 250hp motor...

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.