Questions tagged [uiblureffect]

A UIBlurEffect object applies a blurring effect to the content layered behind a UIVisualEffectView. t. This tag should be tagged issues related with blur effects in iOS. It is available in iOS 8.0 and later .

A UIBlurEffect object applies a blurring effect to the content layered behind a UIVisualEffectView. Views added to the contentView of a UIVisualEffectView are not affected by the blur effect.

This a declared in Apple's UIkit framework.

Source : UIBlurEffect class reference

Related SO questions:

Related tags:

189 questions
6
votes
4 answers

Check if device supports blur

My app uses UIBlurEffect, however older devices (specifically iPads 2 and 3, that support iOS 8) don't have blur support. I'd like to check if the user's device has blur support or not. How do I do it?
Guilherme
  • 7,480
  • 8
  • 49
  • 94
6
votes
2 answers

UIVisualEffectView on UITableView background

I am creating a UITableViewController (at the root of a UINavigationController) and presenting this modally on top of another view controller. I have it working to an extent, such that when the view loads and viewDidAppear is called, the visual…
Z S
  • 6,465
  • 11
  • 47
  • 89
5
votes
3 answers

How to get blur effect similar to Apple maps status bar?

I'm working on a map based iOS 11 application and want to make the status bar blurred exactly like it appears in the Apple maps. This is how it looks on the Maps app: Currently, I'm using UIVisualEffectView to replicate this effect. Here's my…
FE_Tech
  • 910
  • 4
  • 19
5
votes
0 answers

Add a blur view above the videoview

In ios, one can put a UIBlurEffect above the videoview and then the video will be blurred. I am wondering how can i do the same in android or how to blur the video in real time? sorry for my pool English,but i really stuck here,i found a way to blur…
5
votes
0 answers

Is there a way of setting the UIBlurEffect black and white in Swift?

I have a view called componentsView that overlays mkmapview. I thought it would be cool to have this view transparent with a blur effect. So in my viewDidLoad method I typed: let blur = UIBlurEffect(style: UIBlurEffectStyle.Light) let blurView =…
user3766930
  • 4,929
  • 9
  • 38
  • 91
5
votes
1 answer

Swift: Round UIButton with Blur background

I am wanting to make a round UIButton but with a light blur effect with vibrancy as it's background So far I've got a rounded UIButton, but the code I have found online (I'm new to iOS development so don't really understand how the blur etc works)…
Rs2845
  • 53
  • 1
  • 6
5
votes
3 answers

TableView with image background and blur effect - swift

I have a little problem: I'd like to set an image to background in a TableViewController. I tried this: class SquadreController: UITableViewController { override func viewDidLoad() { super.viewDidLoad() var sfondo =…
Fabio Cenni
  • 801
  • 2
  • 16
  • 27
5
votes
1 answer

iOS 8 UIVisualEffect UIBlurEffect and Scaling/Moving/Resizing

I have a subclass of a UIButton that I am blurring and it looks great: - (id)initWithFrame:(CGRect)frame { if (self = [super initWithFrame:frame]) { self.backgroundColor = [UIColor colorWithRed:0 green:0 blue:0…
Gizmodo
  • 2,563
  • 4
  • 32
  • 71
4
votes
1 answer

React Native - How to do Blur View like iOS or instagram?

Background Transparency with BLUR Is it possible to blur view without using background Image? I want to show the parent content on top of the background blur view in modal. Similar kind of this: Tried with react-native-blur : Its actually blurring…
Balasubramanian
  • 4,342
  • 3
  • 28
  • 51
4
votes
1 answer

removeFromSuperview() not working

I wanted to blur the background when the touch id is asked and once the authorization is successfull, the viewcontroller needs to be visible.But this is not happening.The viewcontroller is still blurred even if authorization is successfull.Can…
Vineeth Krishnan
  • 412
  • 2
  • 8
  • 19
4
votes
1 answer

Blur effect background on all cell on UITableView

I use Swift 2, Xcode 7 and Eureka! 1.2 I want apply the blur effect at cells of my TableView. I created the view that contains the effect. But how to recover all cells of the table? My effect view : let blur = UIBlurEffect(style:…
user5623030
4
votes
1 answer

In Objective C how can we Blur face in round/circular shape shape?

I am working on iOS app in which i detect face from Image and blurring face , i have already achieved blurring face in rectangular form but what i am required is to Blur face in rounded shape . what i have tried so for is…
AHSAN NAZIR RAJA
  • 166
  • 1
  • 13
4
votes
4 answers

iOS 8 UIVisualEffect View with UIBlurEffect becomes opaque

I am trying to present a view with a blurred transparent background over an existing view. I am able to get the desired effect during the presentation animation, but once the blurred view is fully presented, it becomes opaque. Here's how I am…
BBruce
  • 255
  • 6
  • 14
4
votes
2 answers

Achieve a Uniform UIBlurEffect in the Primary View of a UISplitView

I'm using a stock UISplitViewController with out-of-the-box Master and Detail view controllers. In a storyboard, I've added a UIImageView to the Detail controller set to effectively fill the view with a single image. In the Master controller, I've…
Chris Droukas
  • 2,908
  • 1
  • 21
  • 24
3
votes
1 answer

UITableView blurred overlay

In my project I want to achieve a blurred background in a UITableView. So far I already set up the overlay like this: let blurEffect = UIBlurEffect(style: .dark) let blurEffectView = UIVisualEffectView(effect: blurEffect) blurEffectView.frame =…
Marlon
  • 47
  • 3
1
2
3
12 13