ios – UIVibrancyEffect在设备上变暗,在模拟器中充满活力

前端之家收集整理的这篇文章主要介绍了ios – UIVibrancyEffect在设备上变暗,在模拟器中充满活力前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我的iPhone 6上的振动效果渲染效果不佳.

这就是它的样子:

我检查了UIAccessibilityIsReduceTransparencyEnabled()的值,它在设备和模拟器中都返回false.

添加所有其他元素的背景图像,效果和containerView的代码如下所示:

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)
        // Scale relative to the size of the iPhone 6 Plus: http://martinnormark.com/smooth-transition-from-launch-image-to-view-controller-in-ios/
        bgImage.transform = CGAffineTransformMakeScale(screenSize.width / 414,screenSize.height / 736)

        self.addSubview(bgImage)

        let blurEffect = UIBlurEffect(style: .Dark)
        self.blurView = UIVisualEffectView(effect: blurEffect)
        self.blurView.setTranslatesAutoresizingMaskIntoConstraints(false)

        self.addSubview(blurView)

        let vibrancyEffect = UIVibrancyEffect(forBlurEffect: blurEffect)
        vibrancyView = UIVisualEffectView(effect: vibrancyEffect)
        vibrancyView.setTranslatesAutoresizingMaskIntoConstraints(false)

        blurView.contentView.addSubview(vibrancyView)
    }

    override init(frame: CGRect) {
        super.init(frame: frame)
    }

    required init(coder aDecoder: NSCoder) {
        super.init(coder: aDecoder)
    }

    override func updateConstraints() {
        super.updateConstraints()

        bgImage.autoCenterInSuperview()
        containerView?.autoPinEdgesToSuperviewEdgesWithInsets(UIEdgeInsetsZero)
        blurView.autoPinEdgesToSuperviewEdgesWithInsets(UIEdgeInsetsZero)
        vibrancyView.autoPinEdgesToSuperviewEdgesWithInsets(UIEdgeInsetsZero)
    }
}

解决方法

或许UIAccessibilityDarkerSystemColorsEnabled()为您的iPhone 6或iPhone 6 plus返回true,因此它看起来更暗.

要禁用它,请转到设置 – >一般 – >辅助功能 – >增加对比度 – >变暗颜色,切换它应该工作.

编辑

文件UIVibrancyEffect中所述.

The vibrancy effect is color dependent. Any subviews that you add to
the contentView must implement the tintColorDidChange method and
update themselves accordingly. UIImageView objects with images that
have a rendering mode of UIImageRenderingModeAlwaysTemplate as well as
UILabel objects will update automatically.

我们应该使用UIImageRenderingModeAlwaysTemplate渲染模式的图像来自动更新UIImageView对象.应用此功能可使UIVibrancyEffect在iPhone设备上充满活力.

原文链接:https://www.f2er.com/iOS/333871.html

猜你在找的iOS相关文章