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
1 answer

Connecting a View Controller to a Sidebar in Xcode

I am using Brian Advent's video on making a blurry sidebar using the UIBlur effect (https://www.youtube.com/watch?v=qaLiZgUK2T0). However, in his video, he does not explain how to link each item of the table to a separate View Controller - he only…
CheezBiscuit
  • 50
  • 1
  • 9
0
votes
1 answer

Trying to blur UITableView behind UIAlertController over UITableViewController

I want to blur my UITableView (inside a UITableViewController) when I present a UIAlertController (UIAlertControllerStyleActionSheet) but when using UIBlurEffect and UIVisualEffectView it doesn't blur the table view's content behind it; it just…
shim
  • 9,289
  • 12
  • 69
  • 108
0
votes
1 answer

Text Blur with UICOllectionview cell

I have collectionView Cell In that i have this text,I want to blur the text as shown in image. I have tried Using UIVisualEffect but i didnt get exact response. Code: UIGraphicsBeginImageContext(self.bounds.size); [self.layer…
0
votes
1 answer

add blur effect while scrolling on Parallax header (Swift)

well what am trying to achieve is in this library https://github.com/Vinodh-G/ParallaxTableViewHeader but am having problem while implementing this library : problem : its on ObjC and my native language is Swift so its hard to understand what is…
remy boys
  • 2,928
  • 5
  • 36
  • 65
0
votes
0 answers

using UIToolBar for blur effect will reject app?

I have an app which need support from iOS 7 and up & I wanna use blur effect at some places. I know apple have introduced blur view but that supports only iOS 8 and up. As a solution for iOS 7, the only solution is to use UIToolBar, however I have…
user3102156
  • 183
  • 2
  • 2
  • 11
0
votes
2 answers

How to move vibrant text up in iOS?

I want to make an app that says hello in the center of the view, waits a few seconds and animates to the top (kind of like a login view you'd see in many apps) No matter what I try, I cannot keep the text centered in the x axis. Could you look into…
0
votes
0 answers

Blur then focus Effect

I am making a single view application in Xcode and I am having a little trouble*(By little I mean BIG trouble!) I wanted to make a clone of the Apple's News app home page where the buttons are are blurry than come to focus.I want to use that effect…
user6125284
0
votes
1 answer

How do I make my UIImageView be on top of the Blur Effect in Swift?

I have this camera app im working on and once the picture is taken the view gets blurred including the captured image. I would like the captured image to be on top of the blur effect so It doesnt get blurred and the user could be able to see the…
coding22
  • 689
  • 1
  • 7
  • 28
0
votes
1 answer

UIImage doesn't fade in/out when blur is on

I have UIImage which is blurred like this: myImageView.image = UIImage(named: imageSet[0]) let blurEffect = UIBlurEffect(style: UIBlurEffectStyle.Light) blurEffectView = UIVisualEffectView(effect: blurEffect) …
Xernox
  • 1,706
  • 1
  • 23
  • 37
0
votes
2 answers

How to Create Blur Design in android

I want design xml in android like to image. Please. Help me!
anh thang Bui
  • 601
  • 1
  • 5
  • 8
0
votes
1 answer

set blur effect full screen in swift

I want to set blur effect in full screen like gonna app here is my code i want to set blur effect let paths = NSSearchPathForDirectoriesInDomains(.DocumentDirectory, .UserDomainMask, true)[0] as String filePathToWrite1 =…
John
  • 203
  • 2
  • 4
  • 15
0
votes
1 answer

Blur background view after segue

I have two views, one with some information and a button which performs a show segue to another view controller which I will call SVC. I want to add the UIBlurEffect to the UIView on SVC but all I have come across is adding subviews with blur which…
needshelp
  • 595
  • 1
  • 6
  • 25
0
votes
2 answers

Remove blur effect in tableview cell in Swift

I make this in my IF clausure, in the cellForRowAtIndexPath method: let blurEffect = UIBlurEffect(style: .Light) let visualEffect = UIVisualEffectView(effect: blurEffect) visualEffect.frame = cell.attachedImage.bounds …
A. Sola
  • 107
  • 1
  • 12
0
votes
1 answer

Blur view with fade in edge effect - iOS

As you can see image below I want to create blur view with fade in edge effect. Does someone write me codes of how to implement this in ios? Thanks please take a look at this image - marked in red rectangle
0
votes
0 answers

Blur Image in UIImageview Objective C

I have an UIImageView which contains an image. Now i need to blur the image by 4% and change the darkness by 30% of the image, on certain button click, and Un blur it as well. How can I achieve this ?
MainakChoudhury
  • 502
  • 1
  • 7
  • 23