2010-05-25 3 views
1

나는 ipad 응용 프로그램에서 MFMailComposeViewController를 구현했습니다. 세로 모드에서 잘 작동합니다. 가로 모드로 회전하면 페이지가 완전히 채워지지 않습니다. 공백없이 메일 작성자를 표시 할 수 있습니까? (무효) displayComposerSheet 방법 -의 라인MFMailComposeViewController 오리엔테이션 in ipad

picker.modalPresentationStyle = UIModalPresentationFullScreen;

을 포함 단지 등에 의해

+0

정말 코드 블록에서 질문하지 않아야합니다. – rickharrison

+0

여기에 내가 올바르게 만들면 .... 감사합니다. – venkat

답변

4

예 내가 답을 찾을 수 있습니다.

+0

이 답변이 도움이 되었으면 옆에있는 ✔를 누르십시오. – Emil

+0

내 코드 - (void) displayComposerSheet 메서드는 iPhone에서 잘 작동하지만 iPad에서는 작동하지 않습니다. - (void) displayComposerSheet { \t [[CCDirector sharedDirector] 일시 중지]; \t picker = [[MFMailComposeViewController alloc] init]; \t picker.mailComposeDelegate = self; \t NSArray * toRecipients = [NSArray arrayWithObject : @ "[email protected]"]; \t [선택기 setToRecipients : toRecipients]; \t [[[CCDirector sharedDirector] openGLView] addSubview : picker.view]; \t [[CCDirector sharedDirector] stopAnimation]; \t [picker presentModalViewController : picker animated : YES]; \t [피커 해제]; } –

+0

코드에서 [picker presentModalViewController : picker animated : YES]에서 멈추고 있습니다. 감사합니다. –