如何在GoogleMaps中删除iconView的alpha?

时间:2016-11-08 14:16:07

标签: swift google-maps google-maps-markers

我知道这听起来很容易,但默认情况下,GoogleMaps默认功能iconView的默认alpha值为0.9。我尝试将它改为1,但它仍然是相同的。有什么建议吗?提前谢谢。

[编辑] 这是我的代码

        let cView = UIView(frame: CGRectMake(0,0,400*PT,300*PT))
        let innerView = UIView(frame: CGRectMake(0,0,400*PT,190*PT))
        innerView.backgroundColor = UIColor.whiteColor()
        innerView.layer.cornerRadius = 3
        innerView.layer.masksToBounds = true
        innerView.alpha = 1
        cView.addSubview(innerView)
        let cIcon = UIImageView(frame: CGRectMake(0*PT, 200*PT, 90*PT, 100*PT))
        cIcon.image = UIImage(named: "1.png")
        cView.addSubview(cIcon)
        cView.backgroundColor = UIColor.clearColor()
        item.iconView = cView

[编辑] 添加了输出的屏幕截图

enter image description here

[编辑] 下面的答案后的最终输出

enter image description here

1 个答案:

答案 0 :(得分:1)

可能有点明显,但你能尝试添加吗?

item.opacity = 1