Sorry to say, but this has been our experience since day 1. We've basically given up and I'd advise you to do the same; just bite the bullet and run everything in an Apple friendly environment. Proba… (View Post)
We only have one legacy application for Xamarin and it is a pain to develop for. It's always been, but back in 2013 it was still less of a pain than Xcode + IB + Objc. My point is, I know what you me… (View Post)
We all know and love the InvokeOnMainThread(Action) method, but I have seen a few projects where instead this pattern is used: static NSObject Invoker = new NSObject();public static void InvokedOnMai… (View Post)
We use something like this to fill a View with a background image, regardless of size: var image = new UIImage("background-image.png");UIGraphics.BeginImageContext(View.Frame.Size);image.Dr… (View Post)
For anyone reading this, contrary to the name of the thread, this will give you the documents directory - not the library directory. They do different things, and though the Xamarin documentation sta… (View Post)