How to bind imageSource to ImageView in MvvmCross
I'm having trouble to bind a source with converter to an imageview in my Touch project. I found here and here how to make it in Android public class TypeToSourceConverter : MvxValueConverter<int, string> { protected override string Convert (int value, Type targetType, object parameter, System.Globalization.CultureInfo culture) { var assetName = ((AppConstants.Type)value).ToString ().ToLower (); return "Images/" + assetName + ".png"; } } But I'm having trouble in how to use this converter in iOS, i just found samples with ImageURL, I'm starting in iOS now, so I have some stupid questions as how