Curtain no 3 was a winner!!
If anyone else has a similar sort of problem I did this:
1. Create a large empty UIImageView in xib
2. Created a referencing outlet called backgroundImage
3. put the following code in:
UIGraphicsBeginImageContext(CGSizeMake(300, 450));
CGContextRef context = UIGraphicsGetCurrentContext();
// drawing with a white stroke color
CGContextSetRGBStrokeColor(context, 1.0, 1.0, 1.0, 1.0);
// drawing with a white fill color
CGContextSetRGBFillColor(context, 1.0, 1.0, 1.0, 1.0);
// Add Filled Rectangle,
CGContextFillRect(context, CGRectMake(0.0, 0.0, 20, 40));
backgroundImage.image = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();
This then drew a small white rectangle at the top left of my image - perfect!!