Bonjour J'essaie de dessiner du texte dans un MKPolygonView. J'ai fait une sous-classe de MKPolygonView et l'ai ajouté à mon MKMapView. Le polygone apparaît correctement, mais je ne peux pas voir le texte. Quelqu'un peut-il m'aider?Dessine un texte simple dans un MKPolygonView
-(void)drawMapRect:(MKMapRect)mapRect zoomScale:(MKZoomScale)zoomScale inContext:(CGContextRef)context{
[super drawMapRect:(MKMapRect)mapRect zoomScale:(MKZoomScale)zoomScale inContext:(CGContextRef)context];
CGRect overallCGRect = [self rectForMapRect:self.overlay.boundingMapRect];
UIFont* font = [UIFont fontWithName:@"ArialRoundedMTBold" size:20.0f];
NSString * t= @"Test";
[[UIColor redColor] set];
[t drawInRect:overallCGRect withFont:font lineBreakMode:UILineBreakModeWordWrap alignment:UITextAlignmentCenter];
}