gpt4 book ai didi

ios - 使用手势快速移动标签位置

转载 作者:塔克拉玛干 更新时间:2023-11-02 22:13:17 25 4
gpt4 key购买 nike

我的 View Controller 中有一个标签。每次点击标签时,我都试图将标签的位置向左移动 50 点。这是我目前所拥有的,但我的标签不会在模拟中移动。我确实对标签有限制。它大约有 100 宽和 50 高,它也在 View Controller 中居中。

    override func viewDidLoad() {
super.viewDidLoad()
// Do any additional setup after loading the view, typically from a nib.
let tapGesture = UITapGestureRecognizer(target: gestureLabel, action: #selector(moveLabel))
gestureLabel.addGestureRecognizer(tapGesture)

}

func moveLabel(){
if(left){
moveLeft()
}
else{
moveRight()
}

}

func moveLeft(){
let originalX = gestureLabel.frame.origin.x
if(originalX < 0){
bringIntoFrame()
}
else{
gestureLabel.frame.offsetBy(dx: -50, dy: 0)
}
}

最佳答案

UILabel 的 userInteractionEnabled 默认为 false。尝试将其设置为 true

关于ios - 使用手势快速移动标签位置,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42823051/

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