I’m using MKMap with overlay. The overlay display text. I need the text to have “stroke” effect. any clue?
[t drawAtPoint:CGPointMake(0,30) withFont:[UIFont fontWithName:@"Helvetica-Bold" /*"Arial"*/ size:(3 * MKRoadWidthAtZoomScale(zoomScale))]
];
If you’re drawing in
drawRect:, you can set the text drawing mode using:If you wanted to fill and stroke, then you can use
kCGTextFillStroke.