BlurKit

A lightweight library that can easily blur the view.

BlurKit-Logo

Features

  • [x] Without inheritance
  • [x] Corresponds to UIView, UIImageView, UILabel etc...
  • [x] Adjustable blur condition
  • [x] Lightweight

Usage

blur

class ViewController: UIViewController {

    override func viewDidLoad() {
        super.viewDidLoad()
        
        view.bk.addBlur(blurRadius: 0)

        UIView.animate(withDuration: 5) {
            self.view.bk.blurRadius = 5
        }
    }
}
label.bk.addBlur(blurRadius: 3, colorTint: .white, colorTintAlpha: 0.4)
imageView.bk.addBlur(blurRadius: 4, colorTint: .white, colorTintAlpha: 0.2)
view.bk.removeBlur()
view.bk.isBlurHidden = true // or false

Installation

Carthage

Add this to Cartfile

github "touyu/BlurKit" ~> 0.1
$ carthage update --platform iOS

CocoaPods

# Podfile
use_frameworks!

target 'YOUR_TARGET_NAME' do
    pod 'BlurKit', '~> 0.1'
end
$ pod install

GitHub