Resultados de la búsqueda a petición "uibezierpath"
Una manera fácil de dibujar un círculo usando CAShapeLayer
En preguntas como Cómo dibujar un círculo suave ... [https://stackoverflow.com/questions/24316705/how-to-draw-a-smooth-circle-with-cashapelayer-and-uibezierpath] , ... Dibujar círculo ...
Cómo establecer Radio de esquina en UIBezierPath
He creado la siguiente imagen deUIBezierPath usando este código //// Bezier Drawing let bezierPath = UIBezierPath() bezierPath.move(to: CGPoint(x: 360, y: 0)) bezierPath.addCurve(to: CGPoint(x: 360, y: 75), controlPoint1: CGPoint(x: 359.53, y: ...
Cómo dibujar múltiples UIBezierPath con diferentes colores en una UIView
Me gustaría dibujar múltiples UIBezierPath en una UIView con diferentes trazos y colores de relleno. Aquí está el código - (void)drawRect:(CGRect)rect { context = UIGraphicsGetCurrentContext(); [[UIColor grayColor] setFill]; [[UIColor ...
cómo dibujar UIBezierPaths
Esto es lo que quiero hacer: Tengo un UIBezierPath y quiero pasarlo a algún método para que se dibuje. O simplemente extráigalo del método en el que se crea. No estoy seguro de cómo indicar en qué vista se debe dibujar. ¿Todos los métodos ...
El marco del botón personalizado no se ve tan bien como Round Rect UIButton
Estoy tratando de dibujar un marco de botón personalizado de la siguiente manera: UIBezierPath *stroke = [UIBezierPath bezierPathWithRoundedRect:self.bounds cornerRadius:RECT_CORNECR_RADIUS]; [stroke stroke]; Pero, por alguna razón, las curvas ...
UIBezierPath Restar ruta
Mediante el uso[UIBezierPath bezierPathWithRoundedRect:byRoundingCorners:cornerRadii:], Puedo crear una vista redondeada, como esta: ¿Cómo podría restar otra ruta de esta (o de alguna otra manera), para crear una ruta como esta: ¿Hay ...
¿Cómo crear el relleno de degradado UIBezierPath?
Me gustaría crear unaUIBezierPath con esquinas redondeadas de 10 px y con relleno degradado. ¿Cómo puedo lograr este efecto? Aquí hay una imagen de lo que quiero hacer: omo puede ver, este cuadrado tiene: 2px borde negro 10px esquinas ...