저는 iPad 응용 프로그램을 작성 중이며 사용자가 전자 메일 의견을 보내도록 홈 화면 (루트보기 컨트롤러)에 옵션을 지정하려고합니다. 메일이 "UIModalPresentationFormSheet"스타일로 나타나길 원합니다. 그러나 코드를 실행하면 전체 화면으로 표시됩니다. 내가 도대체 뭘 잘못하고있는 겁니까?모달보기가 제대로 표시되지 않습니다.
MFMailComposeViewController *picker = [[MFMailComposeViewController alloc] init];
picker.mailComposeDelegate = self;
NSArray *toAddresses = [[NSArray alloc] initWithObjects:@"[email protected]", nil];
[picker setToRecipients:toAddresses];
[toAddresses release];
[picker setSubject:@"App Feedback"];
self.modalPresentationStyle = UIModalPresentationFormSheet;
[self presentModalViewController:picker animated:YES];
[picker release];
감사합니다. 나는 간단한 것을 놓치고 있다는 것을 압니다! – Vic320