Customize your navigation bar with MonoTouch by adding an image
Is there a way to customize the navigation bar using monoTouch? I'm trying to add an imageView to it, but unfortunately it doesn't work. Here is my code:
imageView = new UIImageView();
var image = UIImage.FromFile("image.png");
var small = image.Scale (new SizeF (35f, 35f));
imageView.Image = small;
NavigationItem.TitleView = imageView;
+3
source to share