我正在尝试在 iPad 上使用 presentModalViewController 显示登录屏幕。
LoginFormController *controller = [[[LoginFormController alloc] initWithNibName:@"LoginFormView" bundle:nil] autorelease];
[controller setModalTransitionStyle:UIModalTransitionStyleFlipHorizontal];
[controller setModalPresentationStyle:UIModalPresentationFormSheet];
[self controller:loginFormController animated:YES];
无论我在 Interface Builder 中将视图设置为多大,它总是会调整为大约 540x620。但登录屏幕只不过是两个文本字段和一个按钮。所以我只需要它是460x240。
有人知道调整大小的方法吗?