The UIBezierPath class lets you define a path consisting of straight and curved line segments and render that path in your custom views.
0
votes
1answer
27 views
Reposition CGPath/UIBezierPath in View
Is it possible to reposition an already drawn CGPath/UIBezierPath on a view? I would like to move or change a path's position then perhaps recall the drawinRect method to just show the drawing again.
0
votes
0answers
19 views
bezier shape to sprite
I have an svg file from adobe illustrator, imported it into xcode and have converted the paths to UIBezierPath.
Is it possible to somehow draw these paths onto a ccsprite as a texture?
Cheers,
0
votes
0answers
18 views
UIBezierPath Draw line while touchesMoved with two fingers
How can I draw a line in touchesMoved using UIBezierPath? When I am trying to draw a line using two touches/fingers, it is being drawn but it draws multiple lines. I tried removing lastObjectIndex and ...
0
votes
2answers
52 views
ios detecting line angle or degree
I'm new to iOS, i am trying to develop a freehand drawing app, using uibezierPath.is there a way to calculate or receive the total line length, even if i drew straight line, curved or a circle.
i am ...
0
votes
1answer
36 views
Why is UIBezierPath faster than CAShapeLayer
I have been experimenting with drawing maps. I drew a map of the United States as a series of UIBezierPath's (one path for each state - converted an SVG file with PaintCode). At the same time I was ...
0
votes
1answer
43 views
Changing the pattern in setLineDash:count:phase: to an arc in ios core graphics
I am drawing an ellipse
CGRect paperRect = self.bounds;
CGRect strokeRect = CGRectInset(paperRect, 5.0, 5.0);
CGContextAddEllipseInRect(context, strokeRect);
CGContextStrokePath(context);
I was ...
3
votes
2answers
72 views
get points on a CGRect ellipse at fixed intervals in ios core graphics
I am drawing an ellipse
CGRect paperRect = self.bounds;
CGRect strokeRect = CGRectInset(paperRect, 5.0, 5.0);
CGContextAddEllipseInRect(context, strokeRect);
CGContextStrokePath(context);
How can I ...
0
votes
2answers
39 views
Draw straight line and create curve line dragging line
I would like to create an instrument for my app that draws straight line first and on the second touch and move user can create an adjustable curve line.
So the idea is to set middle point of curve ...
0
votes
0answers
24 views
How to draw a shape (ellipse) in MKMapView?
I would like to draw a shape in the MKMapView. In a standalone view, I can draw a circle with the user "pinch to zoom". Now, I have a toggle button that enables/disables zoomEnabled on the MKMapView. ...
0
votes
0answers
13 views
Smoothed UIBezierPath draws with distance delay
I created an UIView subview which allows several drawing options including freehand drawing. I used -addLineToPoint: and the line became very edgy.
I googled a bit and found some good approaches in a ...
0
votes
0answers
37 views
UIbezierpath drawing with animation
I need some suggestions regarding my one specific ipad project.In this project i have subclass of UIview and there i have dawn several circles overriding drawRect method. Now i have also some semi ...
0
votes
1answer
22 views
Getting touch in CAShapeLayer after setting the position
I have a series of UIBezierPaths that I combine and add to a CAShapeLayer. I need to detect where on the shape layer the user touches. However, because I changed the position of the shape layer, ...
1
vote
1answer
62 views
Draw hollow circle divided into equal parts
I want draw a hollow circle that look like the below image
I got the below code snippet to draw hollow circle
- (id)initWithFrame:(CGRect)frame
{
self = [super initWithFrame:frame];
if ...
1
vote
1answer
27 views
UIScrollView catching user tap during deceleration
Some context for why I ask this:
I have an UIScrollView on which I draw directly using UIBezierPaths. When there are many/long paths and the user starts scrolling the scrollview it would become ...
0
votes
1answer
49 views
Parametric Expression of a Bezier Curve
I have used the Parametric Expression of a Bezier Curve to locate a point along my curve and it's working as it should. The problem is I'm setting my t value as the percentage of the y axis and ...
0
votes
1answer
30 views
BezierPath and masking
I want to set up UIBezierPath as mask into my view:
The goal is something like this:
So i draw the View with frame:
CGFloat round = 80;
UIView *myView = [[UIView alloc] ...
3
votes
2answers
106 views
finding a point on a path
I have an app that draws a bezier curve in a UIView and I need to find the X intersect when I set a value for Y. First, as I understand, there isn’t a way to find a point directly of a UIBezierPath ...
0
votes
1answer
37 views
Play Video Inside Of CGPath or UIBezierPath
Is it possible to clip a video to a custom defined CGPath? I realize the UIBezierPath is really just a wrapper but I threw that in for familiarity purposes.
0
votes
0answers
46 views
UIBezierPath in a zoomable view not pixelated
I have a ScrollView in a ViewController and on the ScrollView i have a View. I use that view for drawing something like rect, circle, line, text,...
For drawing i use a UIBezierPath.
The problem is ...
1
vote
1answer
38 views
Get the current value of UISlider in drawRect: method
I'm trying to move a point drawn in a UIView based on the value of a UISlider. The code below is for a UIView (subview ?) with a custom class (WindowView) on a UIViewController.
WindowView.h
...
1
vote
1answer
16 views
Rendering a gradient in a UIBezierPath
How does one render a gradient inside a UIBezierPath and is it possible to store this state together with the bezierPath for faster re-rendering in drawRect?
I currently render bezierPaths inside ...
1
vote
0answers
55 views
Optimize UIBezierPath drawing
I have a problem that I was hoping that someone in the community may have some expertise in. I am working on a drawing app. It's too much to get into as far as what it does and why, but at each ...
0
votes
1answer
39 views
Rounded bottom edge of UIView
In App I have subclassed UINavigationBar and as my TitleView I'm setting(in View Controller) custom UIView
[self.playButton setBackgroundColor:[UIColor yellowColor]];
[self.navigationItem ...
0
votes
3answers
54 views
How to pick a line closest to the center on a grid?
I am drawing a simple grid, and I want the line closest to the center of the screen to be highlighted a different color.
What is the formula to determine what line was drawn that closely resembles ...
0
votes
0answers
30 views
Split UIBezierPath
I'm having trouble figuring out how to implement the following requirement:
Users are allowed to draw an arbitrary UIBezierPath made from a bunch of points (which I have available), which can look ...
-1
votes
2answers
43 views
Dynamically scale and translate shape
I am drawing a series of UIBezierPath's, all of which have different sizes and locations. I would like to scale each shape to a specific size and move it to a specific location on a UIView. I am ...
1
vote
1answer
78 views
Can I use UIBezierPath to draw a shadow image around a UITableView section?
I have a shadow image that I would like to draw around the outer edge of a grouped UITableView section. This is the image:
I can get the UIBezierPath that represents the rect I want to draw around, ...
0
votes
2answers
35 views
how can I combine uibezierpath drawings?
I'm trying to combine several UIBezierPath drawings;
I have different types of drawings I can make (line, cubic bezier, quadratic beziers), and each of these can be filled or unfilled. I'm selecting ...
0
votes
1answer
32 views
Change direction in stroke animation
I want to revert the direction of a path drawing. So I changed fromValue and toValue propeties, but now full path is visible at the start of animation and it begins to disappear.
I have the path:
...
1
vote
2answers
67 views
Get edge/outer coordinates of CGPoints
I have a faeture that user can draw/color a specific area of an image then get the drawn area as a cropping result.
Currently I store the draw coordinates inside an array, and in the end of the ...
0
votes
2answers
41 views
UIBezierPaths are not kept on screen
I have a custom UIView and in the drawRect method I create a UIBezierPath and render it to the screen. The issue I am having is that the previous UIBezierPath is removed from the view on the next ...
0
votes
0answers
185 views
Is it efficient to use UIBezierPath and CAShapeLayer to make curved edges on IOS?
I have to make only top two corners curved for UILabel, so I have done like this after little exploration..
UIBezierPath *maskPath;
maskPath = [UIBezierPath bezierPathWithRoundedRect:label.bounds ...
0
votes
2answers
108 views
Border of image clipped by Bezier path
Suppose I have an image that was rendered by drawing another image into it with a Bezier path used to clip the drawing. What I'd like is to be able to render the resulting image in such a way that the ...
0
votes
1answer
68 views
How to draw Bezier curves with native Javascript code without ctx.bezierCurveTo?
I need to draw and get coordinates of bezier curves of each steps with native Javascript without ctx.bezierCurveTo method.
I found several resources, but I confused. Esspecially this looks pretty ...
0
votes
1answer
104 views
Cocoa Touch: Mask ignored when image is rendered: renderInContext:UIGraphicsGetCurrentContext()
I am trying to render a masked view using renderInContext:UIGraphicsGetCurrentContext(). I am masking a white colored view which is the subView of a gray colored view. This works just fine for ...
1
vote
3answers
88 views
Transparent zone of a bezier path doesn't allow user interaction
I've got a BezierPath which has the form of an arc more or less, the thing is that I want the user to be able to tap inside the arc (where it could be a door for being more clear) but not on the arc. ...
0
votes
2answers
127 views
Why does giving addArcWithCenter a startAngle of 0 degrees make it start at 90 degrees?
I'm creating a CAShapeLayer to use as a mask for a UIView's layer. I'm using a UIBezierPath to draw the shape layer. It's working fine, except I'm getting some odd results when I draw. The geometry is ...
0
votes
1answer
161 views
uibezierpath stroke with shadow color and blur offset
I am working with UIBezierPaths, for freehand drawing , and everything works fine, for this I am storing my paths in a path array and looping the whole array and rendering the paths with shadow color ...
0
votes
3answers
103 views
UIBezierPath does not draw rounded bottom corners
I am trying to make rounded corners for my views and fencing a strange problem.
I use the following code to make rounded corners for my view
bezierPath = [UIBezierPath ...
3
votes
2answers
94 views
Applying a scale and translate transformation to UIBezierPath
I have a UIBezierPath and I would like to:
Move to any coordinate on the UIView
Make bigger or smaller
I am drawing the UIBezierPath based off of a list of predefined coordinates. I implemented ...
1
vote
2answers
124 views
Clip UIImage with UIBezierPath Asynchronously
I want to add rounded corners to an UIImageView without using QuartzCore to avoid performance issues in a UIScrollView so I solved it like that:
UIBezierPath *path = [UIBezierPath ...
0
votes
1answer
51 views
Convert MKPolygon to UIBezierPath
Is there a way to convert an MKPolygon to a UIBezierPath? I have an MKPolygon that is using latitude and longitude coordinates to make up its points. How would those latitude/longitude coordinates ...
2
votes
0answers
41 views
How to get UIBezierPath around a zone of a given color on a UIImage
I have a UIImage, most of it is white. When the user taps the screen, I would like to get the contour of the tapped region. E.g. if he taps a white zone on the image, I need a UIBezierPath around that ...
0
votes
0answers
180 views
iOS: Rotating a line with respect to a point that could be adjusted by touch
Man, have I been struggling with this...
In reference to the image above, I have a line that is fixed to a specific point. At the other end of the line I have another point that is NOT fixed and ...
1
vote
0answers
145 views
Create a CALayer mask by combining multiple paths
I'm trying to create a mask for a CALayer containing an image. This mask shall be able to use the union of multiple paths or the inverse of the union. In terms of a venn diagram that would be a ...
0
votes
0answers
23 views
Showing 2 Lines in the same graphical window with UIBezierPath
So I need help to plot my 2nd line in a graphical window.
I'm making use of these 2 files to generate the 1st line with the background.
LineGraphView.h
#import <UIKit/UIKit.h>
@interface ...
0
votes
2answers
31 views
snapshot from the UIview is not displaying arcs and roundrect corner
I am making arcs on uiview by UIBezierPath.It is doing fine arc is making but when I am taking snapshot of this UIView for sharing the arcs are not displaying in the snapshot. the uiview is showing ...
0
votes
3answers
60 views
Stretching a UIImage across the length of a UIBezierPath
What I basically need to achieve is a Fruit Ninja - style "slash" effect, where the "slash" trails the user's touch and follows the shape of the user's gesture, and is thinner the longer the distance ...
0
votes
1answer
115 views
Draw along a path detection in iOS [closed]
I am writing a writing ios app for Kid.
I need to enforce writing along a define path like in Dora ABC apps. For example, writing A.
When user touch and draw, it draw only when user finger are along ...
-2
votes
1answer
131 views
How to draw in rect with bezier path?
I have a some rect in my view and I want to draw a figure in that rect with UIBezierPath.
I thought that method
UIBezierPath myBezierPath = [UIBezierPath bezierPathWithRect:myRect];
will make ...

