Possible Duplicate:
CALayer: add a border only at one side
I need to draw a left border of an UILabel programmatically. Using this code it will be drawn all borders (top, left, bottom, right) around the label.
myLabel.layer.borderColor = [UIColor whiteColor].CGColor;
myLabel.layer.borderWidth = 1.5f;
Is there a chance to draw only left-border using QuartzCore or I need to add a subview (e.g. a UIView with small weight and background) to my UILabel?