DEV Community

NxN
NxN

Posted on

how to blur multiple objects at the same time using swift

I have used the code as below. But it only blur one position. Now I want to blur multiple positions at once

import UIKit

class ViewController: UIViewController {

    @IBOutlet weak var imageView: UIImageView!

    override func viewDidLoad() {
        super.viewDidLoad()
        // Do any additional setup after loading the view.
    }

    @IBAction func

Top comments (0)