MFMailComposeViewController
のフィールドをロックして、ユーザーが本文や受信者などを変更できないようにすることは可能ですか?特定のアカウントと本文に移動して特定の条件を満たすには、ユーザーが送信する電子メールが必要です。ユーザーがフォーマットを大幅に編集すると、すべてがひどく間違ってしまう可能性があります。現時点では、ユーザーが入力したデータから本文が入力されています。前のビューのテキストフィールドと日付ピッカーへの入力。
基本的には、アラートや「メッセージを編集しないでください」というメッセージを表示するよりも、フィールドをロックする方が専門的だと思います。したがって、フィールドをロックできない場合でも大きな問題にはなりませんが、何らかの助けが必要です。よろしくお願いします。
以下のリンクからフレームワークをダウンロードしてください。次に、素敵な「お待ちください」オーバーレイを使用してメールを送信するコードをまとめました。実行中(数秒間)の画像を添付しました。 SMTPフレームワークを作成したことについて私は信用していないことに注意してください。それは永遠にそれを検索した後、インターネットからダウンロードされました。ダウンロードできるZipファイルには、ユーザーからのフィードバックのために作成したオーバーレイ画像が含まれています。 @ 2xと通常の両方があります。 「Sendingtestdrive ..」と書かれていますが、Interface Builderにアクセスして、ラベルを作成する必要があります。すでにコードに含まれていますが、コードから追加しませんでした。したがって、IBに追加する必要があります。
1。ダウンロードしたフレームワークをプロジェクトに追加してください。
2。プロジェクトにCFNetworkフレームワークを追加してください
3。インターフェイスビルダーでUILabel名「loadingLabel」を必ず添付してください
4。コードが参照しているユーザー名とパスワードはSMTPサーバーです。持っていない場合は、Gmailアカウントを作成し、Gmail設定を使用してください。あなたがGmailの設定グーグル「gmailsmtp」に精通していない場合は、あなたが必要なものを見つけるでしょう。
.hファイルには、必ず次のものを含めてください。
//for sending email alert
UIActivityIndicatorView * spinner;
UIImageView * bgimage;
IBOutlet UILabel * loadingLabel;
}
@property (nonatomic, retain)IBOutlet UILabel * loadingLabel;
@property (nonatomic, retain)UIImageView * bgimage;
@property (nonatomic, retain)UIActivityIndicatorView * spinner;
-(void)sendEmail;
-(void)removeWaitOverlay;
-(void)createWaitOverlay;
-(void)stopSpinner;
-(void)startSpinner;
.mファイルには次のものが含まれます。
@synthesize bgimage,spinner,loadingLabel;
// add this in ViewDidLoad
//set loading label to alpha 0 so its not displayed
loadingLabel.alpha = 0;
他のすべてはそれ自身の関数です
-(void)sendEmail {
// create soft wait overlay so the user knows whats going on in the background.
[self createWaitOverlay];
//the guts of the message.
SKPSMTPMessage *testMsg = [[SKPSMTPMessage alloc] init];
testMsg.fromEmail = @"[email protected]";
testMsg.toEmail = @"[email protected]";
testMsg.relayHost = @"smtpout.yourserver.net";
testMsg.requiresAuth = YES;
testMsg.login = @"[email protected]";
testMsg.pass = @"yourPassWord";
testMsg.subject = @"This is the email subject line";
testMsg.wantsSecure = YES; // smtp.gmail.com doesn't work without TLS!
// Only do this for self-signed certs!
// testMsg.validateSSLChain = NO;
testMsg.delegate = self;
//email contents
NSString * bodyMessage = [NSString stringWithFormat:@"This is the body of the email. You can put anything in here that you want."];
NSDictionary *plainPart = [NSDictionary dictionaryWithObjectsAndKeys:@"text/plain",kSKPSMTPPartContentTypeKey,
bodyMessage ,kSKPSMTPPartMessageKey,@"8bit",kSKPSMTPPartContentTransferEncodingKey,nil];
testMsg.parts = [NSArray arrayWithObjects:plainPart,nil];
[testMsg send];
}
- (void)messageSent:(SKPSMTPMessage *)message
{
[message release];
//message has been successfully sent . you can notify the user of that and remove the wait overlay
[self removeWaitOverlay];
UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"Message Sent" message:@"Thanks, we have sent your message"
delegate:self cancelButtonTitle:@"OK" otherButtonTitles: nil];
[alert show];
[alert release];
}
- (void)messageFailed:(SKPSMTPMessage *)message error:(NSError *)error
{
[message release];
[self removeWaitOverlay];
NSLog(@"delegate - error(%d): %@", [error code], [error localizedDescription]);
UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"Email Error" message:@"Sending Failed - Unknown Error :-("
delegate:self cancelButtonTitle:@"OK" otherButtonTitles: nil];
[alert show];
[alert release];
}
-(void)createWaitOverlay {
// fade the overlay in
loadingLabel = @"Sending Test Drive...";
bgimage = [[UIImageView alloc] initWithFrame:CGRectMake(0,0,320,480)];
bgimage.image = [UIImage imageNamed:@"waitOverLay.png"];
[self.view addSubview:bgimage];
bgimage.alpha = 0;
[bgimage addSubview:loadingLabel];
loadingLabel.alpha = 0;
[UIView beginAnimations: @"Fade In" context:nil];
[UIView setAnimationDelay:0];
[UIView setAnimationDuration:.5];
bgimage.alpha = 1;
loadingLabel.alpha = 1;
[UIView commitAnimations];
[self startSpinner];
[bgimage release];
}
-(void)removeWaitOverlay {
//fade the overlay out
[UIView beginAnimations: @"Fade Out" context:nil];
[UIView setAnimationDelay:0];
[UIView setAnimationDuration:.5];
bgimage.alpha = 0;
loadingLabel.alpha = 0;
[UIView commitAnimations];
[self stopSpinner];
}
-(void)startSpinner {
spinner = [[UIActivityIndicatorView alloc] initWithActivityIndicatorStyle:UIActivityIndicatorViewStyleWhiteLarge];
spinner.hidden = FALSE;
spinner.frame = CGRectMake(137, 160, 50, 50);
[spinner setHidesWhenStopped:YES];
[self.view addSubview:spinner];
[self.view bringSubviewToFront:spinner];
[spinner startAnimating];
}
-(void)stopSpinner {
[spinner stopAnimating];
[spinner removeFromSuperview];
[spinner release];
}
最終結果を以下に示します。画面が少し暗く見えます(UIAlertが表示されているときのようなものです)。送信されたことを示すメッセージが表示され、メッセージが送信されると「明るく」なります。
ハッピーコーディング!!