微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

TextField可在Swift iOS中拖拽

我想在我的视图中拖动textField.但是我的代码问题很小.

我的代码

override func touchesBegan(touches: Set<NSObject>,withEvent event: UIEvent) {

        var touch : UITouch! = touches.first as! UITouch

        location = touch.locationInView(self.view)

        bottomTextField.center = location
    }

    override func touchesMoved(touches: Set<NSObject>,withEvent event: UIEvent) {

        var touch : UITouch! = touches.first as! UITouch

        location = touch.locationInView(self.view)

        bottomTextField.center = location
    }

问题是,如果我试图触摸TextField并拖动它然后它不起作用.但是,如果我只是触摸其他地方并拖动我的手指然后TextField开始拖动.我想要只有触摸那个textFiel才能成功.

解决方法

您可以通过向文本字段添加手势来实现此目的:

override func viewDidLoad() {
    super.viewDidLoad()


    var gesture = UIPanGestureRecognizer(target: self,action: Selector("userDragged:"))
    bottomTextField.addGestureRecognizer(gesture)
    bottomTextField.userInteractionEnabled = true
}

func userDragged(gesture: UIPanGestureRecognizer){
    var loc = gesture.locationInView(self.view)
    self.bottomTextField.center = loc

}

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐