我有一个带有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
}
}
但是我尝试过的任何方法似乎都无效。 有什么建议吗?