Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am trying to call MFMailComposeViewController inside an flipview but it is giving me error

 *** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '-[SettingView presentModalViewController:animated:]: unrecognized selector sent to instance 0x974a870'

can i call mailComposeViewController from flipview screen?

share|improve this question
1  
SettingView is not an UIViewController, only UIViewController has -presentModalViewController:animated: method – Ben Lu Feb 13 at 20:25
is there anyway to call MFMailComposeViewController from UIView? – Zohaib Feb 13 at 20:28
Wrong thinking. View controllers, not views, launch other view controllers. The only code you want to put in a view is overriding drawing routines etc. The view should be managed by a controller! – Mundi Feb 13 at 20:49
FlipView should be the subview of a UIViewController, just call your modal view controller in UIViewController – Ben Lu Feb 13 at 20:55

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.