Repeat image in view horizontally and vertically

ios, swift, uiimageview, view

Solution

Here is what you need,

self.imageView.image = UIImage(named: "abcd.png")!.resizableImage(withCapInsets: .zero)

Thats all buddy :)

Problem

i know this question repeat but i cant get sultion I have this image And i want view background like this i have tried all the this i also try this ``` self.view.backgroundColor = UIColor(patternImage: UIImage(named: "backgroundicon.png")!) ``` Thank you in advance EDIT : ``` UIGraphicsBeginImageContext(self.view.frame.size) UIImage(named: "backgroundicon.png")?.draw(in: self.view.bounds) let image: UIImage = UIGraphicsGetImageFromCurrentImageContext()! UIGraphicsEndImageContext() self.view.backgroundColor = UIColor(patternImage: image) ``` Result :

Original source

Related problems