Please note, this is a STATIC archive of website www.javatpoint.com from 19 Jul 2022, cach3.com does not collect or store any user information, there is no "phishing" involved.
Javatpoint Logo
Javatpoint Logo

Working with UIBezierPath in iOS applications

Creating User Interfaces is one of the most important tasks that mobile app development requires. Apple provides various ways to develop User Interface in the process of creating the iOS app. As iOS developers, we have multiple options to create the user interface of an app, including Storyboard and Swift UI. We can also make the User interfaces Programmatically using the classes provided by UIKit.

While developing mobile apps, sometimes we need to create complicated UIs that may include different types of Shapes. This problem can be handled by using UIBezierPath class that is provided by Apple to create vector-based paths. Using this class, we can create different types of custom paths that may include any shape we want. We can use the custom paths to achieve various shapes like rectangle, square, oval, and circle. Using UIBezierPath, we can create highly complex shapes by just adding lines to some paths. We can add straight and curved lines to any path.

The UIBezierPath requires a Core Graphics Context for rendering. We can use the following ways to create the Core Graphics Context to render a UIBezierPath in the iOS app.

  1. We can use a CGContext class instance.
  2. We can subclass a UIView class to which we need to draw the specific Shape. Then, we can override the draw() method of the UIView lifecycle to create our UIBezierPath.
  3. The CAShapeLayer objects can also be used to create a Core Graphics Context.

In this tutorial, we will create an iOS app to see how we can create UIBezierPath to create custom shapes. We will also look at how we can use CAShapeLayer, and UIView to get a Core Graphics context to render UIBezierPath.

Let's create a new iOS project in XCode, as shown below.

Working with UIBezierPath in iOS applications

Once we are done creating the project, we need to create the subclass of the UIView as DemoPathView.

Working with UIBezierPath in iOS applications

Now, add the following code to ViewController.swift file.

The viewDidAppear(_ animated: Bool) method in the above code adds the demoView to the View Controller, which is an instance of the UIView Subclass. Now, we need to add the following code to the DemoPathView class.

If we run the code on the simulator, we will get the following view shown on the Simulator.

Working with UIBezierPath in iOS applications

Now, let's create the instance of UIBezierPath to create the path and shapes in our iOS app. Let's create a Rectangular Shape in the following example.

We need to call the createRectangle() in the draw() method of DemoPathView class.

In the above code, we initialize the UIBezierPath object and add the lines to the path to create a rectangle, as shown below.

Working with UIBezierPath in iOS applications

However, we created the rectangle shape in the above example, but it is a bit pointless to draw a shape to outline the exact frame of the view.

Creating Triangle

Till now, we must have noticed in the tutorial, creating any shape requires specifying the appropriate points to the UIBezierpath. Let's create a triangle in the following example.

Add the following code to DemoPathView class to create the rectangle.

It will show the following triangle on the screen, as shown below.

Working with UIBezierPath in iOS applications

Creating Ovals

We can also create ovals using UIBezierpath. However, we need to use the different initializer methods of UIBezierpath().


Working with UIBezierPath in iOS applications

We can also provide the CGrect in the above initializer instead of providing self.bounds as shown below.


Working with UIBezierPath in iOS applications

Creating Rectangle with Rounded Corners

To create a rectangle with rounded corners, we need to use another Initializer, as shown below.

The above code rounds the corners according to the value that is provided as the cornerRadius in the initializer.

Working with UIBezierPath in iOS applications

Sometimes, we need to round some random corner of the rectangle. In the following example, we will round only the top-left and bottom-right corners of the view.

The initializer in the above code accepts the following parameters.

  1. roundedRect: it is the frame of the rectangle that will be shown on the view.
  2. byRoundingCorners: it represents the corners that will be rounded. However, if we need to round only one corner, we don't need to provide an array.
  3. cornerRadii: It represents the corner radius. It requires a CGSize value that accepts width and height parameters. However, the width is only considered, and height is discarded.
Working with UIBezierPath in iOS applications

Creating Arcs

We can also create Arcs using UIBezierPath; however, it is complicated to create arcs using UIBezierPath. To create an arc, we need to use the following Initializer.

The above initializer accepts the following parameters.

  1. arcCenter: It represents the center of the circle to which the arc will be drawn. This parameter will always be the CGPoint value.
  2. radius: It represents the radius of the circle to which the arc will be drawn. As the circle's diameter will be the view's height, half of it is the radius.
  3. startAngle: it represents the starting angle for the arc which will be drawn. It can be seen as the point from which the arc will start drawing. The angle will always be passed in radians (not degree).
  4. endAngle: it represents the ending point of the arc that is being shown. Similar to the startAngle, the endAngle should also be passed in radians.
  5. clockwise: It is a Boolean value that represents whether the arc is to be drawn in the clockwise direction, or the opposite.

Let's create an example to draw the arc on the surface. For this purpose, add the following code in DemoPathView class.

It will show the following view on the simulator.

Working with UIBezierPath in iOS applications

Creating UIBezierPath with CAShapeLayer

In this tutorial, we have created the subclass of UIView and overridden the draw(_ : ) method in the subclass. However, it is not required to override the draw() method every time we want to work with UIBezierPath in the iOS app. As we have already stated in the tutorial, we need to have the Core Graphics Context to render UIBezierPath.

Instead of overriding the draw () method in the UIView subclass, we can use CAShapeLayer objects, which are rendered faster and provide flexibility. The CAShapeLayer class is a subclass of CALayer using which we can add extra layers to a view. It provides various properties that can be set to customize the outcome of a view. Most of the properties of CAShapeLayer are animatable in nature, i.e., the values of such properties can be changed in an animated manner.

We must always provide the path of a CAShapeLayer every time we instantiate it. For this purpose, we can create a UIBezierPath first and then assign it to the CAShapeLayer object. We will use this approach in this tutorial.

Along with setting the path for CAShapeLayer, we also need to set other properties like fill color, stroke color, line width, and position. There are two ways that a shape layer object can be used in the layer of the view, i.e., as a sublayer or as a mask.

Let's create a simple CAShapeLayer Object first, which will also take place in our DemoPathView.swift class. We also need to comment out the entire draw() method that we implemented previously in this tutorial and create a CAshapeLayer object as given in the following code.

The simpleShapeLayer() method implemented above will be called from our DemoPathView initializer. In this method, first, we call the createTraingle() method implemented previously in the tutorial.

Here, the path defined to create the triangle will be set to the path property of our CAShapeLayer. Next, in this method, we create the CAShapeLayer object and assign the created UIBezier path to its path property. We also need to add this created CAShapeLayer to our view layer using the addSubLayer() method. Now, let's call this method from the initializer and look at the output it shows on the simulator.

Working with UIBezierPath in iOS applications

Using Shape Layer as mask or sublayer

As we have stated above in the tutorial, the CAShapeLayer can be used either as a mask or sublayer to the view. Let's create our CAShapeLayer object again but this time, let's give the background color of the view as black instead of having it as clear and see the difference.

Let's look at the output shown in the simulator.

Working with UIBezierPath in iOS applications

Here, we must observe that the path that is not filled with the fill color remains black. However, let's comment on the last statement in the simpleShapeLayer() method and add the following code instead.

Now, it will show the following output on the simulator.

Working with UIBezierPath in iOS applications

By seeing the output in both of the scenarios, we must observe that once we set the mask property of the view's layer to the shapeLayer, we see a complete triangle with black color despite the fact that we have given a fill color for the triangle. We also need to observe that the part of the view not covered by the path is not being shown.

However, the mask works this way. Any part of the view that is not included by the path is clipped. Here, the complete view takes shape provided by the path. Here, the shape layer shows the background color of the view that is black for now. If we want to change the color of the layer, we need to change the background color of the view.

Using CATextLayer

The CATextLayer class is similar to the CAShapeLayer class, although it works for the text shown on the layer. Using this class is to create a layer (like CAShapeLayer) to display some text.

Most of the iOS app developers use UILabels to show text in the iOS application. In some cases, using UILabel doesn't work; we can use CATextLayer, where the multiple sublayers are added to the layer of the view that contains the label.

Using CAtextLayer, we can add text layers on the top of any view. Let's create the following example where we create a text layer and add it to the top of the view layer.

Let's add the following code to the ViewController.swift file of our project.

It displays the following output on the simulator.

Working with UIBezierPath in iOS applications





Youtube For Videos Join Our Youtube Channel: Join Now

Feedback


Help Others, Please Share

facebook twitter pinterest

Learn Latest Tutorials


Preparation


Trending Technologies


B.Tech / MCA