*UPDATE***
My first description (now deleted) was'nt the real situation. It is a simplified version of the problem.
The Complete situation:
I want to change the UIImage within a UIImageView with a picture which I select from the iphone photo gallery. For this I used a MediaPicker (part of the Xamarin library).
When I click a button, the Mediapicker will be created. Then I call a function to take a picture from the photo gallery. This methods expects 2 arguments. The Mediapicker and a callback function. --> PictureFromGallery(mediaPicker, CallbackPhotoMade); This callback function will be trigger after a user selected a picture in the photo library to upload.
Within this callback function I want to change the UIImage of the UIImageView.
void CallbackPhotoMade(MediaFile obj)
{
imageviewPhoto1.Image = UIImage.FromFile("Images/image2.PNG");
//To test I just use a file from a folder in my project
}
When I breakpoint the above function (CallbackPhotoMade) and I put my mouse at the text ".Image =", the following message apears: MonoTouch.UIKit.UIKitThreadAccessException: UIKit Consistency error: you are calling an UIKit method that can only be invoked from the UI thread
I think this is the problem why the UIImage within the UIImageView doesn't change.
Does anyone knows how to solve this?
*UPDATE2*** I read in another topic that this could be solved by setting CheckForIllegalCrossThreadCalls to false like:
public override bool FinishedLaunching(UIApplication app, NSDictionary options)
{
UIApplication.CheckForIllegalCrossThreadCalls = false;
}
Unfortunately the image still doesn't change. Although, the specific error dissapeared.

ChangeImageis being called ? – poupou Jan 19 at 17:21