Authored by Obrand69

Added the retain on the label so the layer shows up.

... ... @@ -75,7 +75,11 @@ static CGImageRef _markerBlue = nil;
- (void) addLabel: (UIView*)label
{
[self addSublayer:[label layer]];
[label retain];
CALayer *layer = [label layer];
//[layer
[self addSublayer:layer];
//[self insertSublayer:[label layer] above:self];
}
... ...