I am trying to draw a transparent rectangle in my UIView which has a black border.
My code however creates a completely black rectangle. Here's my code so far:
- (void)drawRect:(CGRect)rect
{
// Drawing code
CGRect rectangle = CGRectMake(0, 100, 320, 100);
CGContextRef context = UIGraphicsGetCurrentContext();
CGContextSetRGBFillColor(context, 0.0, 0.0, 0.0, 0.5);
CGContextSetRGBStrokeColor(context, 0.0, 0.0, 0.0, 0.5);
CGContextFillRect(context, rectangle);
}


CGContextFillRecttoCGContextStrokeRect– Eric Qian Feb 26 at 6:25