DraggableViewBackground

DraggableViewBackground

这就是我在Obejective C中如何调用UIView DraggableViewBackground 的方法,它工作正常,但是如何在Swift中做到这一点

 DraggableViewBackground *draggableBackgroundforurl = [[DraggableViewBackground alloc]initWithFrame:self.view.frame];

我的DraggableViewBackground在 objective-c 中
我想将其设置为单击按钮时的 subview

最佳答案

let draggableBackgroundforurl = DraggableViewBackground(frame: self.view.frame);

这应该够了吧。

您可以查找letvar之间的区别,以决定哪种情况最适合您的需求。 let不能更改,var可以更改。

10-08 05:52