tags:

views:

100

answers:

1

MFMailComposeViewController displaying only bar at the top of the screen with the cancel and send buttons. Code for landscape:

MFMailComposeViewController *controller = [[MFMailComposeViewController alloc] init];
controller.mailComposeDelegate = self;
[controller setSubject:@"In app email..."];
[controller setMessageBody:@"...Hi, all...." isHTML:NO];
//[self presentModalViewController:controller animated:YES];
controller.view.frame = CGRectMake(0,0,480,320);
[self.view addSubview:controller.view];
[controller release];

What is problem?

A: 

i've ever seen this problem before, as far as i know, you shouldn't replace the presentModalViewController method with addsubview.

iefreer