迅速:UICollectionViewController通过触摸移动UIButton

时间:2019-05-06 10:37:38

标签: swift uicollectionview

我有一个带有UIButton作为视图的子视图的UICollectionViewController。

我希望用户可以在按下按钮的同时拖动它。 我尝试使用以下功能:

    override func touchesMoved(_ touches: Set<UITouch>, with event: UIEvent?) {
        if let location = touches.first?.location(in: self.view){
            self.add_button.center = location
        }
    }

但是我尝试过的任何方法似乎都无效。 有什么建议吗?

0 个答案:

没有答案