All Projects → JagCesar → Ios Blur

JagCesar / Ios Blur

Licence: wtfpl
Blur a UIView

Programming Languages

objective c
16641 projects - #2 most used programming language
ruby
36898 projects - #4 most used programming language

Projects that are alternatives of or similar to Ios Blur

Visualeffectview
Dynamic blur background view with tint color (UIVisualEffectView subclass) 📱
Stars: ✭ 795 (-61.94%)
Mutual labels:  blur
Blurry
🌫 Image Blurring in Swift
Stars: ✭ 56 (-97.32%)
Mutual labels:  blur
Fluentappbar
Fluent App Bar: An Android bottom-sheet-based navigation bar based on Microsoft's Fluent Design System
Stars: ✭ 88 (-95.79%)
Mutual labels:  blur
Lmdropdownviewswift
LMDropdownViewSwift is a simple dropdown view inspired by Tappy.
Stars: ✭ 18 (-99.14%)
Mutual labels:  blur
Dali
Dali is an image blur library for Android. It contains several modules for static blurring, live blurring and animations.
Stars: ✭ 1,021 (-51.12%)
Mutual labels:  blur
Obs Streamfx
StreamFX is a plugin for OBS Studio which adds many new effects, filters, sources, transitions and encoders - all for free! Be it 3D Transform, Blur, complex Masking, or even custom shaders, you'll find it all here.
Stars: ✭ 1,128 (-46%)
Mutual labels:  blur
Etsyblur
EtsyBlur is an Android library that allows developers to easily add a glass-like blur effect implemented in the Etsy app.
Stars: ✭ 739 (-64.62%)
Mutual labels:  blur
Blurdetection2
Blur Detection with OpenCV in Python
Stars: ✭ 156 (-92.53%)
Mutual labels:  blur
X Postprocessing Library
Unity Post Processing Stack Library | Unity引擎的高品质后处理库
Stars: ✭ 1,079 (-48.35%)
Mutual labels:  blur
Blurrycontrols
Small design library for blured controls in XAML and WPF for C#
Stars: ✭ 77 (-96.31%)
Mutual labels:  blur
Blur desktop
纯html实现类似mac os 动态高斯模糊效果
Stars: ✭ 9 (-99.57%)
Mutual labels:  blur
Translucenttb
A lightweight utility that makes the Windows taskbar translucent/transparent.
Stars: ✭ 8,816 (+322.02%)
Mutual labels:  blur
Final Form Focus
🏁 Final Form "decorator" that will attempt to apply focus to the first field with an error upon an attempted form submission
Stars: ✭ 71 (-96.6%)
Mutual labels:  blur
Pesdk Ios Examples
A fully customizable photo editor for your app.
Stars: ✭ 837 (-59.93%)
Mutual labels:  blur
Bluuur
Native dynamic-radius live blur for iOS
Stars: ✭ 112 (-94.64%)
Mutual labels:  blur
Dynamicblurview
DynamicBlurView is a dynamic and high performance UIView subclass for Blur.
Stars: ✭ 792 (-62.09%)
Mutual labels:  blur
Blur
Extension to UIView to apply blur/vibrant effect. Written in Swift.
Stars: ✭ 63 (-96.98%)
Mutual labels:  blur
Mpv Scripts
Various scripts for mpv
Stars: ✭ 164 (-92.15%)
Mutual labels:  blur
Urp kawase blur
URP renderfeature test project
Stars: ✭ 138 (-93.39%)
Mutual labels:  blur
Blurredimageview
Blurred ImageView for your android designes
Stars: ✭ 75 (-96.41%)
Mutual labels:  blur

iOS-blur

In iOS 7 a new view is shown in several places that is transparent and has a nice blur effect. However Apple hasn't given us a public API to use this amazing view.

Apple gave us some sample code at WWDC that blurs an UIImage object. It looks great, but isn't as cool as a view that blurs the views behind it in realtime.

I needed this in one of my projects, so after some thinking I came up with a brilliant and simple idea. It only works for iOS 7.

Screenshot

Screenshot

How is it done?

I simply took a UIToolbar, placed it as a subview and voila!

Awesome! So, how do I use it?

You just use it as any normal UIView object. I wanted it to be as simple as possible, and I think I've managed to do just that.

To use it you copy JCRBlurView.h and JCRBlurView.m to your project. Make sure to import it, initialise it, set a frame and add it to your view. That's it! :)

JCRBlurView *blurView = [JCRBlurView new];
[blurView setFrame:CGRectMake(0.0f,0.0f,100.0f,100.0f)];
[self.view addSubview:blurView];

If you prefer using Auto Layout that works great too!

What about using it as a cocoapod? It would be SO much easier!

Just add: pod 'iOS-blur' to your Podfile and run pod install

License

iOS-blur is released under the WTFPL-license (see the LICENSE file)

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].