Skip to main content
19
results
Andrew Fletcher
How to apply a gradient tint over a background image? Set the background image The first step is to set the background image.  I wanted the image to cover the entire device, so scale aspect fill will be required. self.backgroundImage = UIImageView(image: UIImage(named: "bgkMain")) self.backgroundImage.contentMode = .scaleAspectFill self.view.insertSubview(self.backgroundImage, at: 0)  Set the tint layer With the background in place, next construct the tint layer.  To make...
Andrew Fletcher
For detailed notes regarding how to add custom fonts to your iOS app see...
Andrew Fletcher
Working on formatting the date in Xcode, and you come across the situation where...
Andrew Fletcher
Adding a floating decimal point for n number of places is quite easy to achieve....