5
Estoy tratando de redondear solo las esquinas superiores derecha e izquierda de mi tabla vista. Estoy usando el siguiente código y solo parece estar redondeando la esquina superior izquierda ...¿Cómo redondear solo esquinas en una UITableView?
CAShapeLayer *topLayer = [CAShapeLayer layer];
UIBezierPath *roundedPath =
[UIBezierPath bezierPathWithRoundedRect:self.bounds byRoundingCorners:UIRectCornerTopRight | UIRectCornerTopLeft cornerRadii:CGSizeMake(9.f, 9.0f)];
topLayer.path = [roundedPath CGPath];
http: // stackoverflow .com/a/5826698/855738 Usé esta respuesta para hacer más o menos lo mismo – BBog
Sé que es una publicación anterior, pero solo asegúrate de que tienes. [tableView.layer setMasksToBound: YES] y debería estar bien y dandy –
Ver la respuesta aceptada [aquí] [1]. Puede ser el mismo problema. [1]: http://stackoverflow.com/questions/26934231/uiview-in-cell-cant-round-right-hand-corners –