uiblureffect Questions

3

In my application i want to apply blur effect on uiview.So how can i achive blur effect. I tried by below code: UIGraphicsBeginImageContext(scrollview.bounds.size); [scrollview.layer renderInCont...
Rear asked 3/9, 2015 at 2:52

3

Solved

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 UIVisu...
Brotherhood asked 31/8, 2018 at 9:40

13

I was wondering how to set the radius/blur factor of iOS new UIBlurEffectStyle.Light? I could not find anything in the documentation. But I want it to look similar to the classic UIImage+ImageEffec...
Biometry asked 27/8, 2014 at 14:13

11

Solved

Title pretty much asks it all... I'm playing with the iOS8 Visual Effect View with Blur. It's over a UIImageView that shows a user choosable background photo. The view placed in the contentView it...
Collocation asked 7/4, 2015 at 18:44

3

Solved

I've blurred my view programmatically and added a share extension with screenshot but the screenshot doesn't blur my view in the image. All programming in swift Code for blurring let blurEffect =...
Muimuir asked 14/5, 2015 at 11:25

2

Solved

I have a UIView that contains buttons and labels. When these buttons are pressed, this UIView will become blur using the code below. @IBOutlet weak var blurView: UIView! var blurEffect = UIBlurEf...
Terminal asked 3/11, 2015 at 16:51

2

I have a column: header with text, body with image, footer with text, all widgets have transparent backgrounds. I want to set the background using a blur of the main image but I keep reaching dead ...
Documentary asked 10/9, 2018 at 8:31

5

Solved

Is it possible to create a shadow around a UIVisualView with UIBlurEffect without letting the UIVisualView get coloured by the shadow underneath? I basically just want the shadow around the view b...
Nicole asked 5/10, 2016 at 23:56

1

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: T...
Rusch asked 13/5, 2018 at 14:39

15

Solved

I want to fade a UIVisualEffectsView with a UIBlurEffect in and out: var blurEffectView = UIVisualEffectView() blurEffectView = UIVisualEffectView(effect: UIBlurEffect(style: .dark)) I use a nor...
Pastoral asked 27/3, 2015 at 18:33

2

Solved

I'm trying to create a blur effect on the background of a UI window for my game in Unity3D. One of the best examples I can think of right now is Heroes Of The Storm, notice how the background of th...
Ihs asked 13/3, 2015 at 10:49

1

Is it any way to change blur effect style on-the-fly after creating view? E.g. i've created in Storyboard blur view, but i need to change effect style from .Light to .Dark programmatically. I can...
Archespore asked 23/4, 2015 at 14:19

3

Solved

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.vie...
Yim asked 28/7, 2015 at 23:51

0

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 E...
Blunder asked 18/10, 2017 at 16:16

7

Solved

I have a prototype cell and I put a UIVisualEffectView inside its ContentView. Visual Effect View's Blur Style is Dark and Vibrancy is off. Then I set the alpha of the Visual Effect View to 0,5 usi...
Sailboat asked 12/10, 2014 at 12:30

3

I'm presenting a View Controller modally with a blur background effect. iOS 10/XCode 8 introduced a problem with my animation. This is the presentation code: let modalVC = ModalViewController(nibN...
Hennahane asked 22/9, 2016 at 16:54

2

Solved

I'm using this code to create a blur effect inside my view: let blur = UIVisualEffectView(effect: UIBlurEffect(style: UIBlurEffectStyle.Light)) blur.frame = CGRectMake(180, 10, 200, 750) myView.ad...
Isomorph asked 7/12, 2014 at 18:34

1

Solved

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...
Paulinapauline asked 2/1, 2016 at 17:28

4

Solved

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 d...
Belldame asked 10/1, 2015 at 17:2

1

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 colorWithR...
Praedial asked 27/11, 2014 at 21:38

2

Solved

My app utilizes UIVisualEffectView to blur the background just like Control Center. But I discovered the iPad 2 (and Retina iPad) which can run iOS 8 isn't powerful enough to display that effect so...
Gibbeon asked 16/10, 2014 at 18:16

1

Solved

How do you use Visual Effect Views with Blur and Vibrancy in Interface Builder? I've dragged this item out into the View, then dragged a UILabel onto the last view in the hierarchy - the vibrant e...

1

Solved

I've updated to OSX Yosemite and see that one of the new "features" of Xcode is blur/transparency effect for the project navigator window. Below is an example of my wallpaper blurring through. I fi...
Thomasinathomasine asked 20/10, 2014 at 18:56

2

Solved

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 vie...
Ringler asked 24/9, 2014 at 11:15
1

© 2022 - 2024 — McMap. All rights reserved.