I am using the following code to display a screen controller / view.
SearchParams *nxt=[[SearchParams alloc] initWithNibName:@"SearchParams" bundle:nil]; UINavigationController *nvc=[[UINavigationController alloc] initWithRootViewController:nxt]; nvc.modalPresentationStyle=UIModalPresentationFormSheet; [self.preLCtr.preCinescape_iPadViewController presentModalViewController:nvc animated:YES];
I am not sure about the size of the PesentationSheet. I tried to take screenshots and take dimensions / size. But this is not an exact solution.
Question: What is the exact size of the current modal sheet in the iPad?
source share