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:

206 questions
0
votes
0 answers

How to implement this kind of blur effect iOS 8 & iOS 9?

As you can see ,the map view should display with blur effect. I tried the UIBlurEffect, stackoverflow suggestions and many blur effect libraries but I not able achieve the actual effect.How can I achieve the exact blur effect , can anybody help me…
iniyan
  • 131
  • 3
  • 15
0
votes
1 answer

UITableViewController Blur Background Not Showing With Scroll

I have set a background image for my UITableViewController and then added a blur effect with the following code: var blur = UIBlurEffect(style: UIBlurEffectStyle.Dark) var blurView = UIVisualEffectView(effect: blur) blurView.frame =…
shaydawg
  • 1,193
  • 1
  • 12
  • 17
0
votes
0 answers

How Can I Mask a UIView and Not just the UIImage

I am trying to mask a complete UIView is this possible? The view I am trying to mask has a blur effect layered on top of it. I am to successfully mask the image under the UIView but not the entire View itself. Basically I need to be able to mask a…
0
votes
1 answer

How to add vibrancy effect to an image

I made a blur image using UIBlureffect and it worked fine. I would like to add a vibrancy image but so far it has not worked Current code: @IBOutlet var imageViewGif: UIImageView! func addEffect() { var effect = UIBlurEffect(style:…
Nathannn
  • 161
  • 4
  • 16
0
votes
0 answers

Blur view in TableViewCell

I have created blur view in view controller and added sub view of custom table view cell. The problem is if I select 1st cell, it works perfectly. But if I select 2nd cell, blur view is shown in 3rd cell. If I select 3rd cell, blur view is shown in…
0
votes
1 answer

Problems trying to create blurred background for modal view

I am trying to show a view modally. The view is shown as a "Cross Dissolve" "over full screen". I am passing the screen shot to the controller. I am then trying to crop the screenshot and retain only the part that would be under the view. This i am…
user1043601
0
votes
2 answers

Translucent blurred background in JavaFx

I want blurred translucent background effect in my JavaFx app like in the following image. But I cannot find any satisfactory answer anywhere. This answer provides some workaround, it takes screenshot of background and sets it as background image.…
Ashish
  • 325
  • 3
  • 9
0
votes
1 answer

Putting a realtime blurred view over AVCaptureVideoPreviewLayer

I've looked around and couldn't find the answer, so apologies if this has already been asked. I want to create a view in the shape of a toolbar, although not an actual toolbar since the side menu cannot overlay a toolbar (FrostedSidebar) using…
Kusti8
  • 1
  • 1
0
votes
1 answer

ios8 blur effect disappear

Thanks for reading my question I had some trouble stabilizing the intensity of blur effect I had a UIImageView with blur effect (Extralight) which covered the whole view as a background The intensity of the blur effect looked just fine But after I…
caoool
  • 57
  • 8
0
votes
1 answer

Can i animate alpha of UIBlurEffectView?

Since iOS 8 Apple provided easier way to make blur. But can i animate its appearance? CSDTimelineCell* headerCell = (CSDTimelineCell*)[self.timelineTabel cellForRowAtIndexPath:self.headerIndexPath]; UIBlurEffect *blurEffect = [UIBlurEffect…
0
votes
3 answers

How to achieve the Blur Effect like apple doing on home screen in iPhone 5s

I need to apply the blur effect to my UIViewController as shown in above image, i tried using UIVisualEffectView but the Apple Default BlurEffectStyles doesn't match my current requirement, why because i need to adjust the Blur level to reach my…
0
votes
2 answers

Blur effect duplicates everytime I open a view

I have a UITabBar, with the sections, "main" and "profile". In profile I use a background image that fills the entire screen, with a blur effect. It works pretty good. When I go back to main and go back again to profile, a new blur effect is added…
Aitor Sola
  • 17
  • 5
0
votes
0 answers

UIBlurEffectView doesn't fill the whole element

I have a MKMapView which fills the whole screen. I want to blur the map with this code in Swift: var blurMap = UIBlurEffect(style: UIBlurEffectStyle.Light) var blurMapView = UIVisualEffectView(effect: blurMap) blurMapView.frame =…
Aitor Sola
  • 17
  • 5
0
votes
1 answer

Font type and color based on device

I have a UI that looks good on all iOS 8 devices I've tried so far except the iPad 3 - the blur effect doesn't work so my white text is hard to read. Is there a way I can change the color of that font just for that one device? (are there other iOS 8…
Tommy Draughn
  • 179
  • 1
  • 12
0
votes
1 answer

Change existing UIBlurEffect UIBlurEffectStyle programmatically?

I have a Visual Effect View on storyboard connected to my ViewController as an outlet. The effect is burring an ImageView behind it and works great. I'm trying to change the UIBlurEffectStyle from Light to Dark inside a button click IBAction. Any…
user3511310
  • 31
  • 1
  • 4
1 2 3
13
14