Present modal view controller in half size parent controller
问题 I am trying to present modal view controller on other viewcontroller sized to half parent view controller. But it always present in full screen view. I have created freeform sized View controller in my storyboard with fixed frame size. 320 X 250. var storyboard = UIStoryboard(name: \"Main\", bundle: nil) var pvc = storyboard.instantiateViewControllerWithIdentifier(\"CustomTableViewController\") as ProductsTableViewController self.presentViewController(pvc, animated: true, completion: nil) I