gpt4 book ai didi

ios - 不透明度和模糊

转载 作者:可可西里 更新时间:2023-11-01 01:40:45 24 4
gpt4 key购买 nike

我正在尝试在我的 tabBar 上的 navigationBar 上重新创建以下效果。然而,它似乎并不透明。我一直在关注本教程,但似乎没有用。我需要什么才能重新创建它?

enter image description here

在我的 tabBarController 类中

    tabBar.barTintColor = UIColor(red: 0.0, green: 0.0, blue: 90.0/255.0, alpha: 1)
tabBar.translucent = false
tabBar.tintColor = UIColor(rgba: "#B52519")


var underlayView = UIView(frame: CGRectMake(0, 0, tabBar.frame.size.width, tabBar.frame.size.height))
underlayView.autoresizingMask = UIViewAutoresizing.FlexibleWidth | UIViewAutoresizing.FlexibleHeight
underlayView.backgroundColor = UIColor(red: 0.0, green: 0.34, blue: 0.62, alpha: 1.0)
underlayView.alpha = 0.36
tabBar.insertSubview(underlayView, atIndex: 1)

最佳答案

您可以简单地设置 tabBar.translucent = true 而不是整个 underlayView

要更改色调颜色集 tabBar.barStyle = .Black 以使其类似于图片中的导航栏效果。
如果您想设置自定义色调,请将 tabBar.barTintColor 设置为您想要的任何颜色。

在此处阅读有关一般标签栏和标签栏半透明的更多信息: https://developer.apple.com/library/ios/documentation/UserExperience/Conceptual/UIKitUICatalog/UITabBar.html

关于ios - 不透明度和模糊,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30086480/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com