在 Swift3 中基于 viewWithTag 更改 UIView

Change UIView based on viewWithTag in Swift3

在 Objective C 中,很容易根据使用转换为 (UIImageView*) 的标签更改 UIView 的图像 — 例如:

[ (UIImageView*) [self.view viewWithTag:n+1] setImage:[UIImage imageNamed:@"bb.png"]];

我一直在努力寻找一个最新的例子,它可以在 Swift 3 中做同样的事情。我终于找到了解决方案——你需要使用 as! 关键字并可选择转换为 UIImageView?。如果你需要这样做——这里有一些工作代码:

// SWIFT3 change UIView based on viewWithTag (johnrpenner, toronto)

override func viewDidLoad() 
{
    super.viewDidLoad()

    var n : Int = 0
    for i in stride(from:7, to:-1, by:-1) {
        for j in 0...7 {
            n = i*8+j

            let sqImageView = UIImageView(image: UIImage(named: "wp.png"))
            sqImageView.tag = n+1

            sqImageView.frame.origin.x = (CGFloat(j) * cellX + xStartAdj)
            sqImageView.frame.origin.y = ( (CGFloat(7-i) * cellY) + yStartAdj )

            view.addSubview(sqImageView)
            }
        }
}

override func touchesBegan(_ touches: Set<UITouch>, with event: UIEvent?)
//func touchesBegan(touches: Set<UITouch>, with event: UIEvent?)
{
    if let touch = touches.first {
        let touchPos = touch.location(in: self.view)  //swift3
        let touchSQ : Int = coordToSQ(touchPoint:touchPos)

        // change UIView.image based on viewWithTag
        if var findView : UIImageView = view.viewWithTag(touchSQ+1) as! UIImageView? { findView.image = UIImage(named: "bp.png")! }     
    }
}

无论如何 - 花了几个小时才弄明白,而且那里的一切都是 Swift 2 或 Objective C - 认为 Swift 3 的例子可能有用。

干杯! 约翰 p

就这样吧

if let findView = self.view.viewWithTag(touchSQ+1) as? UIImageView {
    findView.image = UIImage(named: "bp.png")
}

thx nirav — 使用 let .. 作为? UIImageView .. 是很好的答案。

这可能是一个有用的功能:

func setImageView(byTag:Int, toImageNamed:String)
{
    if let findView = self.view.viewWithTag(byTag) as? UIImageView {findView.image = UIImage(named: toImageNamed)}
    return
}