Questions tagged [uivibrancyeffect]
29 questions
1
vote
0 answers
Visual effects view iOS 9 noise
In iOS 8 everything worked fine and when upgrading to iOS 9 my iPhone shows some vibrancy texts with a noisy edge. It looks horrible but I can't figure out why it does look like that

Luke Pistrol
- 1,199
- 3
- 12
- 26
1
vote
1 answer
Trying to create UIVibrancyEffect by calling +notificationCenterVibrancyEffect but an error is caused
I am trying to create the same effect that is in the Notification Centre using the following line but I keep getting an error:
UIVisualEffectView *effectView = [[UIVisualEffectView alloc] initWithEffect:[UIVibrancyEffect…

madtapper
- 231
- 2
- 6
- 11
1
vote
1 answer
How to add vibrancy effect to UISegmentedControl but not to its labels?
In notification centre, the top segmented control looks to be drawn with a vibrancy effect. However, its labels (Today and Notifications) appear to be regular, opaque colours. How can I reproduce this?

anna
- 2,723
- 4
- 28
- 37
1
vote
1 answer
How to implement UIVibrancyEffect for table view header?
I would like my table view section headers text to be rendered in the vibrant style, where the underlying UI shines through the text. I have tried the following, but nothing appears for the header as if I returned nil.
override func…

Jordan H
- 52,571
- 37
- 201
- 351
1
vote
1 answer
Create circular buttons with UIVibrancyEffect like Lock Screen
How can one create buttons that mimic the buttons found on the Lock Screen in iOS 8? Notice the buttons have a UIVibrancyEffect applied to their circular borders, and when you tap on one the button background also shows the vibrant effect - the…

Kyle
- 45
- 1
- 3
0
votes
1 answer
Why Electron Vibrancy Effect Not Working At All
This problem is so confusing because i don't know where the issue is.
I used vibrancy in my last project with previous electron versions in same machine and those were work properly but know it does not work, and i don't have any idea what is the…

SoR
- 94
- 1
- 13
0
votes
1 answer
Implement vibrancy effect on NSTextField
How can I implement vibrancy effect on NSTextField
I added an NSVisualEffectView with interface builder and try to use NSAppearance to add vibrancy to the label
var varLabel = NSTextField()
varLabel.stringValue = "Some"
varLabel.appearance =…

Avi Rok
- 550
- 1
- 4
- 7
0
votes
1 answer
UIBlurEffect and UIVibrancyEffect image doesn't show on a view controller's view
I came across an example on a book for learning iOS 13 programming. I put the program snippet in a view controller's view, but the image, a label with vibrancy effect on a blurred background, doesn't show on the controller's view.
The expected image…

Michael May
- 286
- 2
- 11
0
votes
0 answers
UITableViewVibrantCell on UITableView
I would like to know if it was possible to use UITableViewVibrantCell on a UITableView (not controller). I can't figure out how to do it.
I'm doing :
func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
…

Nils Truchaud
- 11
- 4
0
votes
0 answers
Swift - Blurred vibrant background view (like the notification center over the home screen)
I'm writing an iOS 10 app.
I have a view (let's call it overlayView) that overlays another view (let's call it backgroundView).
backgroundView has some color in it.
I can easily get the overlayView to blur the backgroundView, but that ends up making…

Ethan G
- 1,353
- 2
- 15
- 31
0
votes
1 answer
keep interface builder constraints on button when adding to vibrancy
I have a button I created and made constraints for in interface builder. However, now, I want to add it to a vibrancy effect.
So when I add it to the content subview when creating the vibrancy. The button losing all the constraints. Is there a way…

TravelNVal
- 171
- 12
0
votes
1 answer
Legibility of text on a transparent background
I wonder how to deal with legibility issues on a blurred background.
The transparent design of the iPhone widget looks really nice. I wanted to reproduce the same feels on my project.
I first tried off putting white letters on a black-tinted…

pearl7721
- 320
- 1
- 12
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
1 answer
Unable to use UIVibrancyEffect with tableView header text label
I'm trying to crate a blurry header in my UITableView with a text label that has the vibrancyEffect, but with this code all I get is a blurry header without any text labels...
What's wrong? :)
- (void)tableView:(UITableView *)tableView…

Tibbe
- 317
- 1
- 2
- 17