开发者

SAMS Teach Yourself dismissModalViewController Not Working

开发者 https://www.devze.com 2022-12-20 18:30 出处:网络
I\'m just learning iPhone application development and found a problem with one of the examples from the \"SAMS Teach Yourself iPhone Application Development in 24hrs\". The source can be downloaded fr

I'm just learning iPhone application development and found a problem with one of the examples from the "SAMS Teach Yourself iPhone Application Development in 24hrs". The source can be downloaded from http://www.iapps4you.com/iphone/photograbber.zip

Onc开发者_JAVA百科e saved do a build and run in the SDK and then select the little "information" symbol which displaye the information screen. Selecting "Feedback" will display the mail composer and does allow the user to complete all the required fields.. The Problem comes when you try to "Send" or "Cancel", it appears control never gets passed back to the "mailComposeController"

I'd appreciate anyone having a look at this code and leeting me know if you can get the app to close the mail window when the "Send" or "Cancel" is selected..


In -(IBAction)sendFeedback:(id)sender of FlipsideViewController.m change

mailer.delegate = self;

to

mailer.mailComposeDelegate = self;

Also, to fix the compile warnings in FlipsideViewController.h change

-(IBAction)sendFeedback;

to

-(IBAction)sendFeedback:(id)sender;
0

精彩评论

暂无评论...
验证码 换一张
取 消