Top "Uibezierpath" questions

The UIBezierPath class lets you define a path consisting of straight and curved line segments and render that path in your custom views.

Drawing UIBezierPath on code generated UIView

I have a UIView added in code at run time. I want to draw a UIBezierPath in it, but does …

ios iphone objective-c uiview uibezierpath
An easy way to draw a circle using CAShapeLayer

In questions like How to draw a smooth circle..., ...Draw Circle... and ...draw filled Circles the question and answer is …

ios objective-c swift uibezierpath cashapelayer
Draw a line with UIBezierPath

First time using BezierPaths, wondering how this function is actually supposed to be implemented. Currently the bezier path moves within …

ios swift uibezierpath
How to draw a "speech bubble" on an iPhone?

I'm trying to get a "speech bubble" effect similar to the one in Mac OS X when you right click …

ios objective-c iphone uiview uibezierpath
How to draw multiple UIBezierPath with different colors in a UIView

I would like to draw multiple UIBezierPath in a UIView with different stroke and fill color. Here is the code …

ios uiview uibezierpath
UIBezierPath Subtract Path

By using [UIBezierPath bezierPathWithRoundedRect:byRoundingCorners:cornerRadii:], I am able to create a rounded view, such as this: How could I …

iphone objective-c uibezierpath
How to change the color of a UIBezierPath in Swift?

I have an instance of UIBezierPath and I want to change the color of the stroke to something other than …

ios swift uibezierpath
How to fill color inside UIBezierPath?

I draw a shape by UIBezierPath in touchesMoved. -(void)touchesMoved:(NSSet *)touches withEvent:(UIEvent *)event { UITouch *touch = [touches anyObject]; …

ios uibezierpath
How to get a list of points from a UIBezierPath?

I have a UIBezierPath that I need to take a list of points from. In Qt there is a function …

ios objective-c iphone uibezierpath
Draw Graph curves with UIBezierPath

I'm drawing a graph in my application. My problem is that I want to draw line joining vertex points as …

iphone objective-c ios core-graphics uibezierpath