MonoTouch: Simple Web Server
A web server can be a very flexible solution to transferring data from your application. MonoTouch makes it extremely easy to add a web server… Read More »MonoTouch: Simple Web Server
A web server can be a very flexible solution to transferring data from your application. MonoTouch makes it extremely easy to add a web server… Read More »MonoTouch: Simple Web Server
I’m taking a break from reading the Professional iPhone Programming with MonoTouch and .NET/C# book (which is awesome by the way) so I decided to… Read More »MonoTouch: Drawing Rotated Text
I’ve decided to start a quick tip series on this blog. I’ll try to post some useful code snippets along with some tips and tricks… Read More »Quick Tip: Simple HTTP Post Using Monotouch
Well I lagged a little on this one but here is the continuation of my drawing with MonoTouch tutorials. This one demonstrates how to draw… Read More »MonoTouch: Drawing a pie chart.
Here is a simple MonoTouch app that demonstrates how to use Quartz2D to draw custom progress bars. You can download the MonoDevelop project here. This… Read More »MonoTouch: Drawing custom progress bars.
Here’s a simple example on using Quartz 2D with MonoTouch. First you need to create a CGBitmapContext object: [sourcecode language=”csharp”] int width = 100; int… Read More »Drawing with MonoTouch.