Is there a way to allow me to select and use an image for an object in the Xcode XIB designer for a MonoTouch project?
This would be quicker than for me to do it the way I am currently doing it.
Currently, I add the image I want to the Images folder within MonoDevelop. Then I open the XIB in Xcode and add my new control. I create an Outlet for it. I go back to MonoDevelop and add code such as the following:
imgLogo.Image = UIImage.FromFile("Images/logo_sm.png");
For some reason, I can't select my MonoDevelop images in Xcode designer. The image drop down selector is always empty.
Anyway I can save time and do it this way in the designer?