我正在尝试在视图中显示UIReferenceLibraryViewController
。通常,当使用UIViewController.present()
时,它将覆盖整个屏幕,但是我希望它只是屏幕的一部分。我该怎么办?
我所拥有的:
import UIKit
class ViewController: UIViewController {
override func viewDidLoad() {
super.viewDidLoad()
let controller: UIReferenceLibraryViewController = UIReferenceLibraryViewController(term: "word")
self.present(controller, animated: false)
}
}