I want to resize and reposition modal view. Resize works well. Reposition doesn’t work. There is bug with shadow. Please see screenshot number two. Is it possible to lower shadow?
-(IBAction) onModal:(id)sender
{
UINavigationController *nav = [[UINavigationController alloc] init];
nav.modalPresentationStyle = UIModalPresentationFormSheet;
[self presentViewController:nav animated:YES completion:nil];
nav.view.superview.bounds = CGRectMake(0, 0, 200, 200);
}

nav.view.superview.bounds = CGRectMake(0, -200, 200, 200);

You can move the shadow around by setting the shadowPath attribute of the view’s layer.
note: Alternatively you could create the UIBezierPath with the offset you need rather than transforming as a second step.