In addition to Besi's answer:
- Subclass
MFMailComposeViewController and override the initWithCoder: .
Example:
-(id)initWithCoder:(NSCoder *)aDecoder { return [super init]; }
Then it will work with dropdowns, but I think that your exits / tags / other definitions from the storyboard scene will not be applied (you need to configure the mail composer inside your prepareForSegue:sender: method.
source share