Gradient backgrounds started becoming popular around the time of iOS 7 (2013). With just a little code, adding a gradient background can uplift a dull looking user interface (UI).

There are many ways to create background gradients, below is just one simple approach:

In a new Xcode iOS project, open Main.storyboard, from the Object Library drag a new View onto the View Controller. Set the View’s top, bottom, left and right constraints to be zero and ensure ‘Constrain to margins’ is deselected.

 

Add an IBOutlet to ViewController.swift with the name backgroundGradientView and connect it to the newly added View.

 

Below super.viewDidLoad(), create a gradient layer and apply it to your View.

import UIKit class ViewController: UIViewController { @IBOutlet weak var backgroundGradientView: UIView! override func viewDidLoad() { super.viewDidLoad() // Create a gradient layer. let gradientLayer = CAGradientLayer() // Set the size of the layer to be equal to size of the display. gradientLayer.frame = view.bounds // Set an array of Core Graphics colors (.cgColor) to create the gradient. // This example uses a Color Literal and a UIColor from RGB values. gradientLayer.colors = [#colorLiteral(red: 0, green: 0.5725490196, blue: 0.2705882353, alpha: 1).cgColor, UIColor(red: 252/255, green: 238/255, blue: 33/255, alpha: 1).cgColor] // Rasterize this static layer to improve app performance. gradientLayer.shouldRasterize = true // Apply the gradient to the backgroundGradientView. backgroundGradientView.layer.addSublayer(gradientLayer) } override var shouldAutorotate: Bool { return false } }

Example Code Result

By default the gradient is rendered vertically from top to bottom, you can further customise the gradient by setting gradient start and end positions.

// Diagonal: top left to bottom corner. gradientLayer.startPoint = CGPoint(x: 0, y: 0) // Top left corner. gradientLayer.endPoint = CGPoint(x: 1, y: 1) // Bottom right corner. // Horizontal: left to right. gradientLayer.startPoint = CGPoint(x: 0, y: 0.5) // Left side. gradientLayer.endPoint = CGPoint(x: 1, y: 0.5) // Right side.

Finding colours that blend well together can be a little hit and miss, thankfully uiGradients and iOS 7 Colors have a nice collection of gradient swatches.

Diagonal

Horizontal

5 Comments