I would like to use MonoTouch.Dialog framewrok to display some readonly info.
I think I can get along with using labels for all my values and the only problem I have is with an UIImage. I would like to show an UIImage but prevent the UIImagePickerController from being used.
Is this possible? How?
I assume you're using
ImageElement?If so simply create your own
MyImageElementtype that inherits fromImageElementand override theSelectedmethod to do nothing (or something else). E.g.