这就是我在Obejective C中如何调用UIView DraggableViewBackground 的方法,它工作正常,但是如何在Swift中做到这一点
DraggableViewBackground *draggableBackgroundforurl = [[DraggableViewBackground alloc]initWithFrame:self.view.frame];
我的DraggableViewBackground在 objective-c 中
我想将其设置为单击按钮时的 subview
最佳答案
let draggableBackgroundforurl = DraggableViewBackground(frame: self.view.frame);
这应该够了吧。
您可以查找
let
和var
之间的区别,以决定哪种情况最适合您的需求。 let
不能更改,var
可以更改。