Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How easy is it to develop an iPhone application using MonoTouch in Visual Studio?

I know about Monotouch and I have virtual MacOS and Monodevelop/Monotouch installed.

However, is it better to build an iPhone application in Monotouch on Mac OS X or it's as easy as to build iPhone app in Visual Studio and port it to iPhone via Monotouch?

Is there anyone who tried porting c# project to iPhone? How different was it from building the app on mac os using monodevelop/monotouch?

ps. my favourite helper utilities does not exist on mac os and that's the reason for this Q

like image 653
sandalone Avatar asked Sep 12 '10 14:09

sandalone


People also ask

Can you make an iPhone app in Visual Studio?

You can build apps for Android, iOS, and Windows devices by using Visual Studio. As you design your app, use tools in Visual Studio to easily add connected services such as Microsoft 365, Azure App Service, and Application Insights.

Can iOS apps be written in C#?

Developing C# Applications for iPhone and iPad using MonoTouch shows you how to use your existing C# skills to write apps for the iPhone and iPad. Fortunately, there's MonoTouch, Novell's . NET library that allows C# developers to write C# code that executes in iOS.

Can we develop app using Visual Studio?

Fast, Hyper-V-based, rich simulations. Deploy your cross-platform apps to different Android device configurations all from Visual Studio. It works with your Xamarin, Cordova, or cross-platform C++ projects. The Visual Studio Emulator for Android can be installed under “Individual components” with Visual Studio 2022.

Can I build iOS app on Windows Xamarin?

To build Xamarin. iOS apps with Visual Studio 2019 or Visual Studio 2022 on Windows, you will need: A Windows machine with Visual Studio 2019 or Visual Studio 2022 installed. This can be a physical or a virtual machine.


2 Answers

As mentioned, to compile your applications and upload them for appstore use, or debug using the simulator you'll need to use MonoDevelop on a Mac.

However it is possible to write a large portion of the code in Visual Studio 2008 or 2010.

I've written 6 Monotouch apps that are selling badly in the appstore, using primarily Visual Studio. The reason I use Windows and VS2010 is I'm a lot slower with the Mac keyboard, have my Visual Studio setup for speed, and a PC that is about twice the processing power.

Here's a few gotchas and tips:

  • Copy the monotouch DLLs from your Mac to Windows (search for "monotouch.dll" on the Mac), stick all the DLLs in a static place and reference them in your project. It should then compile in VS.
  • Make sure you keep 2 project files - a MonoDevelop and a Visual Studio one. I tried converting manually and also wrote a converter to go between the two but it breaks so often it's easier to just keep two files.
  • You can also convert the Mono XML documentation (it's in a different format to the Microsoft .NET XML documentation format) for Visual Studio intellisense. The link below has a download for the XML documentation I generated for Monotouch 2.1.
  • Avoid using a shared drive for development. This make compilation on the Mac very slow - stick to copying the files using a USB stick or ideally use an online source control site like bitbucket.org
  • I found it was quite fast with a single keyboard, monitor and mouse and a KVM switch going between PC and Mac.
  • For the layout (either XIB or C#) you'll have use your Mac, or write the bare bones in VS first.

I've written a fair amount on the process here.

like image 156
Chris S Avatar answered Oct 21 '22 06:10

Chris S


You simply can't develop a MonoTouch application just using Visual Studio. You have to use the OSX tools to build the code and create the package for the phone. There's no way to work around that, and the easiest way to do it is using MonoDevelop.

What me and other developers have done in the past is to develop some of the C# libraries for the apps using Visual Studio, because even though MonoDevelop is pretty good, its still far from being as good as VS. Refactoring code, for example, is much easier with tools like Resharper, etc.

When developing the App in Visual Studio, there's a lot of things you'll have to deal with; for example:

  • You simply cannot run a build from Visual Studio: VS doesn't know how to build the kind of project necessary for the iPhone, and it doesn't have all the libraries that exist in the iOS SDK.
  • there's no visual editor to create the XIB files you you probably want to create for your app.
  • You'll have to do a lot of extra work here and there to get the VS to even open the solution (like copy lib files from OSX to Windows, create separate projects, etc) (although I think Novell Mono tools for VS may help a little on this one.

So here's what I've been doing for the last 6 months:

  • Break down the application into different projects for business logic and UI logic
  • You should be able to build, compile and even test the business logic from VS. Just remember not to use any UI libraries, or external libraries not available in MonoTouch
  • Use MonoDevelop to build the UI code part of the app. Being able to quickly run the app to test helps a lot.
  • Every once in a while, if you feel you need to to a big cleanup, open the code in Visual Studio, and do the refactorings; although you won't be able to build anything, the code checker in VS will help to make sure the code is still valid.

Hope it helps!

like image 39
Eduardo Scoz Avatar answered Oct 21 '22 05:10

Eduardo Scoz