Is there a way to set cornerRadius for only top-left and top-right corner of a UIView?
EDIT:
I tried the following, but it end up not seeing the view anymore. Anything wrong with the code below?
UIView *view = [[UIView alloc] initWithFrame:frame];
CALayer *layer = [CALayer layer];
UIBezierPath *shadowPath = [UIBezierPath bezierPathWithRoundedRect:frame byRoundingCorners:(UIRectCornerTopLeft|UIRectCornerTopRight) cornerRadii:CGSizeMake(3.0, 3.0)];
layer.shadowPath = shadowPath.CGPath;
view.layer.mask = layer;
view.bounds, notframe, (2) the layer should be aCAShapeLayer, notCALayer; (3) set the layer'spath, notshadowPath. – Kurt Revis Apr 16 '12 at 0:32