如何将这种 Objective-C 格式转换为 Swift?我已经创建了一个名为Bridging-Header.h
.
我已经将此库头导入到桥接头中。
#import "DraggableView.h"
#import "DraggableViewBackground.h"
#import "OverlayView.h"
然后我想把这个Objective-C的东西转换成swift。
DraggableViewBackground *draggableBackground = [[DraggableViewBackground alloc]initWithFrame:self.view.frame];
[self.view addSubview:draggableBackground];
到目前为止我已经做了什么,我DraggableViewBackground
从DraggableViewBackground.h
我的ViewController.swift
.
import UIKit
class ViewController: UIViewController {
override func viewDidLoad() {
super.viewDidLoad()
// Do any additional setup after loading the view.
var instanceOfDraggableViewBackground: DraggableViewBackground = DraggableViewBackground()
}
}