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?
SettingViewis not anUIViewController, onlyUIViewControllerhas-presentModalViewController:animated:method – Ben Lu Feb 13 at 20:25FlipViewshould be the subview of aUIViewController, just call your modal view controller inUIViewController– Ben Lu Feb 13 at 20:55