I want to display the \"infinity\" symbol using
CGContextSelectFont(context, \"HelveticaNeue\", textSize, kCGEncodingMacRoman); CGContextShowTextAtPoint
Here's the MonoTouch answer:
UIGraphics.PushContext (mBmpContext); mBmpContext.SetRGBFillColor(1f,1f,1f,1f); var font = UIFont.FromName ("Arial", 30); using (var nsstr = new NSString ("äöü ÜÖÄ")){ nsstr.DrawString (new PointF (10, 400), font); } UIGraphics.PopContext ()