Tagged Questions
MonoTouch is a software development kit for Mac OS X that lets you use C# (a .NET programming language) to create native applications for Apple iPhone, iPod Touch, and iPad devices.
133
votes
16answers
11k views
Is MonoTouch worth the cost or should I just learn Objective-C?
After sitting through a session today on Mono at a local .Net event, the use of MonoTouch was 'touched' upon as an alternative for iPhone development. Being very comfortable in C# and .Net, it seems ...
130
votes
22answers
8k views
Is MonoTouch now banned on the iPhone?
Does this in fact ban the use of Monotouch for the IPhone?
EDIT UPDATE: As of iOS v4.1's release, this section was REMOVED from the iPhone terms, and MonoTouch is now totally, 100% allowed. Of ...
28
votes
3answers
2k views
How can I launch multiple instances of MonoDevelop on the Mac?
I would like to open a new MonoDevelop instance to work on a different project on the Mac, and the OS is currently preventing me from opening a new instance.
26
votes
0answers
419 views
Better MonoTouch crashes with TestFlight
We've hooked up TestFlight and the TestFlight SDK with MonoTouch and so far it's working great.
One thing we've noticed is that the crash reports are more geared towards Obj-C apps.
They look like ...
26
votes
2answers
473 views
Monotouch Three20 app launcher or bindings
From what I've read about btouch; the bindings are not complete for three20.
Is there a project that provides either bindings for the Three20 app launcher or a pure MonoTouch implementation of a ...
21
votes
6answers
10k views
What happens to an iPhone app when iPhone goes into stand-by mode?
My app uses NSTimer and it appears that NSTimer doesn't fire when the iPhone goes into the stand-by mode (either by pressing the hardware button or by the idle timer).
When I activate the iPhone ...
18
votes
5answers
702 views
Anyone successfully used password on sqlite database in Monotouch?
I have a Monotouch app which uses a sqlite database. I want to encrypt the database so I am doing this:
_mainConnection = new SqliteConnection("Uri="+finalDB);
_mainConnection.Open();
...
17
votes
6answers
6k views
Monotouch or Titanium for rapid application development on IPhone?
As a .Net developer I always dreamed for the possibility to develop with my existing skills (c#) applications for the Iphone.
Both programs require a Mac and the Iphone Sdk installed.
Appcelerator ...
17
votes
3answers
4k views
How big is an Objective-C iPhone app vs. a MonoTouch app?
I am considering using MonoTouch for some iPhone development, but payload size is an important factor.
For a user who has never installed Mono on their iPhone before, what would the size of an ...
16
votes
3answers
491 views
Anyone have experience with architecture for cross platform WP7 Android iOS mobile development (monotouch, monodroid, C#)
This question is specifically related to a recommended architecture and people's previous experiences for cross-platform WP7, iOS, Android apps developed using C#, Monotouch and Monodroid ...
16
votes
6answers
1k views
Targeting/Developing for multiple mobile platforms with one programming language (C#)? Cost-Benefit?
Today it is possible to use C# programming for multiple mobile platforms such as:
WindowPhone7
Android - Monodroid
iPhone - Monotouch
(feel free to edit if I missed some)
Of course, it is still ...
14
votes
2answers
430 views
.NET Unit test runner for iOS
Has anyone written (or know about) a .net unit-test runner, preference to NUnit, that runs on iOS ? or do I have to roll my own ?
My goal is to execute the unit tests on the simulator or devices. So ...
13
votes
2answers
555 views
Why is our MonoTouch app breaking in the garbage collector? It is not out of memory
We have a simple question, but the cause is complicated. We are experienced developers, and have done a lot of research into what may be causing it. We are hoping that MonoTouch developers can work ...
13
votes
6answers
2k views
Is there a way to mix MonoTouch and Objective-C?
I'd like to know if there is a way to mix C# and Obj-C code in one project. Specifically, I'd like to use Cocos2D for my UI in Obj-C and call some MonoTouch C#-Library that does some computations and ...
12
votes
4answers
1k views
Why won't instruments execute my Monotouch application?
I'm trying to use Instruments to look at resource usage in my Monotouch app. However, I can't get the app to launch through Instruments.
When I hit the record button in Instruments, the app launches ...
10
votes
10answers
1k views
Suggestions for entering mobile development — pure iPhone SDK, Android SDK, Mono Touch or Titanium?
I am entering mobile development. I have been working primarily in .NET since 1.0 came out in beta. Before that, I was mostly a C++ and Delphi guy and still dabble in C++ from time to time. I do ...
10
votes
3answers
3k views
Q:Images in Interface Builder when using MonoTouch
I'm new to MonoTouch and iPhone development. I have my images (PNG) in a resources folder in MonoDevelop, however if I want to set the image property for a button in Interface Builder, how do I do ...
9
votes
3answers
4k views
Write to a File in Monotouch
How would I create and write to a file in a Monotouch iPhone app?
The file should persist between application launches, so I guess it has to be placed somewhere in the App bundle ( documents or ...
8
votes
1answer
360 views
Compiling monotouch app using mdtool fails, works in MonoDevelop
I have a Monotouch iPad application for which I am trying to set up an automated build script. I am attempting to use mdtool, but I seem to have hit a wall. If I build the solution using the ...
8
votes
3answers
2k views
Monotouch and XCode 4, where did the outlets go?
Today I updated my mac with the latest version of MonoDevelop, MonoTouch and the Mono-Framework. I also downloaded the latest version of XCode, version 4 (a nifty 4.5 gig download).
At first I did ...
8
votes
5answers
3k views
Appcelerator Vs. MonoTouch - Which one is best for a .NET developer?
I'm a .NET developer with 10 years experience developing Web & Mobile Apps. I'm looking to branch into iPhone (and possibly Android) development. I'm looking at two products:
Appcelerator ...
8
votes
8answers
707 views
.NET Development of iPhone App with MonoTouch - which development environment?
I'm a .NET developer (C#) with several years developing Windows Mobile Apps. I would like
to get into developing iPhone Apps and MonoTouch looks good based on reviews I've read. So
I'm going to go ...
8
votes
2answers
325 views
How to Use MonoTouch Library in Xcode Project?
I have lots of existing business logic in C# assemblies, and I'd like to reuse them in an iOS project.
I'd like to build a library in MonoDevelop and "reference" it from my Xcode project (to use the ...
8
votes
5answers
3k views
MonoTouch & C# VS Objective C for iphone app
Greeting,
I'm a C# programmer guy. I'm planning to start developing app for iphone but I'm not sure if I should use C# under MonoTouch or just use the native language for iphone OS Objective C.
Is ...
8
votes
3answers
3k views
Is MonoTouch a viable platform for iPhone development?
MonoTouch seems like a great platform for iPhone development, but I'm concerned about deploying it to the Apple Store. Are there any examples of applications built with it that are currently available ...
7
votes
4answers
218 views
What contraints should I be aware of to maximize portability of Mono code?
I'm interested in writing some cross-platform code using Mono, with a view to targeting mobile iOS and Android runtimes.
I've perused the Mono and MonoTouch sites, but don't see anything that ...
7
votes
1answer
154 views
Compiling lambdas and invoking delegates on the device in Monotouch
I am currently porting a .NET codebase in MonoTouch and I'm currently working on a method that receives an Expression<T>. I'm trying to compile it, and then dynamically invoke it.
Here's what I ...
7
votes
2answers
319 views
Optimization of a GC language, any ideas?
I'm a pretty big newbie when it comes to optimization. In the current game I'm working on I've managed to optimize a function and shave about 0.5% of its CPU load and that's about as 'awesome' as I've ...
7
votes
1answer
418 views
MonoTouch instability continues: managed memory allocator crashes
Long story short: I can allocate tons of unmanaged memory, but trying to allocate the same amount (or far less) in managed memory crashes MonoTouch in GC_remap (callstack below).
Details:
I'll talk ...
7
votes
5answers
826 views
Compile C# into objective-C
Now that monotouch is banned, I was wondering if there is a way to translate C# (or some other language) into Objective-C? I won't mind using Apple's API as long as I don't have to declare my ...
7
votes
6answers
427 views
Robust DateTime parser library for .NET
I am writing an RSS and Mail reader app in C# (technically MonoTouch).
I have run into the issue of parsing DateTimes. I see a lot of variance in how dates are presented in the wild and have begun ...
7
votes
8answers
626 views
is there any way that we can develop application in .net for iphone
can we develop application for iphone in visual studio itself are there any emulator for testing it that is compatible with visual studio
7
votes
3answers
908 views
How can I shrink the size of my mono touch application
I created a simple hello world mono touch (iPhone) application. However, its size is 5MB.
Is there a way to make it smaller?
7
votes
1answer
2k views
How to enable iPhone Settings (bundle, plist) in MonoTouch
I'm trying to get the iPhone Settings working in a small test app I'm writing using MonoTouch/MonoDevelop. It's probably super basic/fundamental in Xcode...
...however I didn't immediately see how to ...
6
votes
0answers
115 views
Replication Framework for Mono
We are considering adopting MonoTouch and MonoDroid for building a cross platform business App.
This App will handle a local database that needs to be synchronized with a master database (only one ...
6
votes
1answer
174 views
Change Farseer Physics Engine settings to improve performances
I have sucessfully used Farseer to develop one of my game using XNA. The game runs like a charm in Windows and WP7. I'm currently working on porting my game in IOS using Monotouch and Monogame. I've ...
6
votes
1answer
161 views
protobuf-net v2 and Monotouch : How does it mix?
I have been trying to use protobuf-net with MonoTouch but I have no idea how, and despite having heard that it is possible, I haven't been able to find any tutorial or any example that actually work.
...
6
votes
1answer
241 views
Latest MonoTouch 4.0 problem when trying to access a WCF service
My MonoTouch application is calling to a SOAP WCF Service using CustomBinding with HttpTransportBinding and TextMessageEncodingBinding and everything is working fine with MonoTouch version 3.2.6. I'm ...
6
votes
2answers
907 views
How can I recycle my SqliteCommand to speed up this Sqlite bulk insert (iOS)?
I'm using the code below to bulk insert a 30000 rows (1000 rows at a time). Still it is not as fast as it could be. In this example How do I improve the performance of SQLite? I can see that they are ...
6
votes
3answers
1k views
MonoTouch and Xcode 4
Now that the Xcode 4 GM seed has been released, will MonoDevelop eventually interact with it somehow for XIB editing? I'm currently manually setting the "Open With..." on each of my XIBs to the old ...
6
votes
4answers
902 views
why use xcode if monotouch is available?
I am little bit confuse
if mono touch is available than why we should use mac environment(sdk,xcode+Interface Builder)?
what are the disadvantage of monotouch compare to xcode?
Thank you in advance
...
6
votes
2answers
1k views
Messagebox.Show and DialogResult equivalent in MonoTouch
I have a Yes/No dialog from UIAlertView with two buttons. I would like in my method to implement the logic similar to this:
if(messagebox.Show() == DialogResult.OK)
The thing is if I call ...
6
votes
3answers
358 views
Creating iOS UI components from NUnit test code
I'm trying to write a unit test for some code that programmatically creates UIButtons, but when I call this code from the test, I get a NullReferenceException. Stepping through in the debugger, it ...
6
votes
5answers
2k views
Reusing Monotouch code in Monodroid app
I'm currently implementing a Monotouch application that will eventually be ported to Monodroid. The application is just a client to an OData Web service. Nothing too fancy or performance critical.
...
6
votes
1answer
580 views
iPhone, No Garbage Collection: What About MonoTouch?
It's well known that Apple does not provide automatic garbage collection on the iPhone to prolong battery life. Yet MonoTouch apps, which reportedly run perfectly on the iPhone (and many are sold ...
6
votes
5answers
1k views
How good is Mono Touch in comparison to the IPhone SDK?
I'm new to IPhone development and have to decide on a suitable tool to develop my application in. Since I am know C# / .NET, but not objective C, Mono Touch seems appealing to me. But is it is worth ...
6
votes
4answers
2k views
Why is it not possible to use the MPMoviePlayerController more than once?
In MonoTouch, we ran into this problem with the Movie Player sample in that it would only play the video once, but would not play it a second time.
I am asking this question to post an answer, ...
6
votes
3answers
3k views
Monotouch rotate view in Portrait/Landscape
Can anyone give an example of how to rotate the view of a monotouch application from portrait to landscape and vice versa?
6
votes
3answers
1k views
How MonoTouch works?
I would really appreciate it anybody could briefly explain me, what's the general approach to implementing things like MonoTouch? I'm really amazed because it's not the first example I see when people ...
5
votes
1answer
121 views
MonoTouch convert color UIImage with alpha to grayscale and blur?
I am trying to find a recipe for producing a a blurred grayscale UIImage from a color PNG and alpha. There are recipes out there in ObjC but MonoTouch does not bind the CGRect functions so not sure ...