I experience a bad vibration effect on my iPhone 6.
Here's what it looks like: 
I checked the value of UIAccessibilityIsReduceTransparencyEnabled() and returns false on both the device and the simulator.
The code for the background image, effects and the View container that I add, all the other elements look like this:
import Foundation import UIKit import PureLayout class BackgroundImageView : UIView { let bgImage = UIImageView(forAutoLayout: ()) var blurView:UIVisualEffectView! var vibrancyView:UIVisualEffectView! var containerView: UIView? = nil { willSet(container) { vibrancyView.contentView.addSubview(container!) } } init(imageName: String) { super.init() let screenSize: CGRect = UIScreen.mainScreen().bounds bgImage.image = UIImage(named: imageName)
ios iphone ios8 swift
MartinHN
source share