I am trying to draw a rectangle on my UIView subclass, and everything is working except for the width of the line is doubled (I'm using the iPhone Simulator atm, on the Retina version).
This is the drawRect method:
- (void)drawRect:(CGRect)rect
{
CGContextRef context = UIGraphicsGetCurrentContext();
CGRect innerRect = CGRectInset(rect, 5, 5);
CGContextSetStrokeColorWithColor(context, [[UIColor whiteColor] CGColor]);
CGContextSetLineWidth(context, 2);
CGContextMoveToPoint(context, CGRectGetMinX(innerRect), CGRectGetMinY(innerRect));
CGContextAddLineToPoint(context, CGRectGetMaxX(innerRect), CGRectGetMinY(innerRect));
CGContextAddLineToPoint(context, CGRectGetMaxX(innerRect), CGRectGetMaxY(innerRect));
CGContextAddLineToPoint(context, CGRectGetMinX(innerRect), CGRectGetMaxY(innerRect));
CGContextClosePath(context);
CGContextStrokePath(context);
}
This code draws a rectangle in the correct place but with width 4px, rather than the specified 2px.
Looking on the internet, I see I may have to set the scale factor, so I tried adding :
self.contentScaleFactor = [UIScreen mainScreen].scale;
self.layer.contentsScale = [UIScreen mainScreen].scale;
at the beginning of the method, and when that didn't work I tried:
self.contentScaleFactor = 2;
self.layer.contentsScale = 2;
(as 2 is the number that should be returned by the scale method for retina displays)
And that didn't work either.
Is this just a problem with the simulator, that will be fixed when I run it on device? (I upgraded it to 5.1, but forget to update Xcode, so I'm currently 2 hours into the 7 hour wait for the Xcode update to finish downloading)
Or is there something I'm missing?
CGContextStrokeRectWithWidthfunction. – Peter Hosey Dec 3 '11 at 20:48