我在Swift
中使用Xcode
这是我的问题:
我想声明一个变量,我想要存储UIImageView
(不是UIImage
,而是UIImageView
),所以我尝试了类似的东西
var nameVariable = UIImageView()
然后我需要在if语句
中回忆这个nameVariable if(\(nameVariable).center.y > something){..}
我尝试使用"(nameVariable)"但它不起作用,你能帮助我吗?
答案 0 :(得分:0)
声明变量
var img=UIImageView()
然后使用
if img.center.y > 50 {
//do stuff here
}