So i added the following code (i tried both before the [contentView addSubview: imageView] and after) to your LoadView routine:
Code:
CGContextRef context = UIGraphicsGetCurrentContext();
CGContextSetRGBStrokeColor(context, .97, .83, .15, 1.0);
CGContextSetRGBFillColor(context, 0.0, 0.0, 1, 1.0);
CGContextSetLineWidth(context, 1.0);
CGContextAddRect(context, CGRectMake(100, 100, 100, 100));
CGContextStrokePath(context);
[[UIColor redColor] set];
UIFont *font = [UIFont boldSystemFontOfSize:16];
CGPoint point = CGPointMake(100,100);
[@"HELLO" drawAtPoint:point withFont:font];
and neither the box nor the text shows up and yet it shows up perfectly in my non scroll view from my app :P
I guess my real question is how do i attach text and or rectangle drawings to an image so that the image can include these?
Any ideas?