├── .gitignore ├── LICENCE ├── README.md ├── blur ├── blur.xcodeproj │ └── project.pbxproj └── blur │ ├── AMAppDelegate.h │ ├── AMAppDelegate.m │ ├── AMViewController.h │ ├── AMViewController.m │ ├── Default-568h@2x.png │ ├── Default.png │ ├── Default@2x.png │ ├── JCRBlurView.h │ ├── JCRBlurView.m │ ├── blur-Info.plist │ ├── blur-Prefix.pch │ ├── en.lproj │ └── InfoPlist.strings │ ├── fish.jpg │ └── main.m ├── iOS-blur.podspec └── screenshot.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JagCesar/iOS-blur/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JagCesar/iOS-blur/HEAD/LICENCE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JagCesar/iOS-blur/HEAD/README.md -------------------------------------------------------------------------------- /blur/blur.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JagCesar/iOS-blur/HEAD/blur/blur.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /blur/blur/AMAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JagCesar/iOS-blur/HEAD/blur/blur/AMAppDelegate.h -------------------------------------------------------------------------------- /blur/blur/AMAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JagCesar/iOS-blur/HEAD/blur/blur/AMAppDelegate.m -------------------------------------------------------------------------------- /blur/blur/AMViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JagCesar/iOS-blur/HEAD/blur/blur/AMViewController.h -------------------------------------------------------------------------------- /blur/blur/AMViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JagCesar/iOS-blur/HEAD/blur/blur/AMViewController.m -------------------------------------------------------------------------------- /blur/blur/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JagCesar/iOS-blur/HEAD/blur/blur/Default-568h@2x.png -------------------------------------------------------------------------------- /blur/blur/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JagCesar/iOS-blur/HEAD/blur/blur/Default.png -------------------------------------------------------------------------------- /blur/blur/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JagCesar/iOS-blur/HEAD/blur/blur/Default@2x.png -------------------------------------------------------------------------------- /blur/blur/JCRBlurView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JagCesar/iOS-blur/HEAD/blur/blur/JCRBlurView.h -------------------------------------------------------------------------------- /blur/blur/JCRBlurView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JagCesar/iOS-blur/HEAD/blur/blur/JCRBlurView.m -------------------------------------------------------------------------------- /blur/blur/blur-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JagCesar/iOS-blur/HEAD/blur/blur/blur-Info.plist -------------------------------------------------------------------------------- /blur/blur/blur-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JagCesar/iOS-blur/HEAD/blur/blur/blur-Prefix.pch -------------------------------------------------------------------------------- /blur/blur/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /blur/blur/fish.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JagCesar/iOS-blur/HEAD/blur/blur/fish.jpg -------------------------------------------------------------------------------- /blur/blur/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JagCesar/iOS-blur/HEAD/blur/blur/main.m -------------------------------------------------------------------------------- /iOS-blur.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JagCesar/iOS-blur/HEAD/iOS-blur.podspec -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JagCesar/iOS-blur/HEAD/screenshot.png --------------------------------------------------------------------------------