Is there a way to specify the hieght of the PullToDismiss view, without having it take up the entire screen? I tried this: ``` let vc = LikesTableController() vc.preferredContentSize = CGSize(width: view.frame.width, height: 200) present(vc, animated: true) ``` but it doesn't work....