using MonoTouch.Dialog I create a simple ViewController:
In the LoadView I set the background image. This works in iPhone, but not in iPad. There is nothing else to the app at this point:
public override void LoadView ()
{
base.LoadView ();
var color = UIColor.FromPatternImage (image);
TableView.BackgroundColor = UIColor.Clear;
ParentViewController.View.BackgroundColor = color;
}
is there a reason why iPads don't get their background set?