1

私のアプリには、メールでログを送信する可能性を顧客に提供するログ メカニズムがあります。このために、Apple MFMailComposeViewController をアプリに統合しました。顧客が低い OS バージョン (2.x) のデバイスを使用している場合、または電子メール アカウントがデバイスに表示されない場合に備えて、いくつかの UIAlertsView をプッシュし、ユーザーにいくつかの提案メッセージを表示しました。誰かが私の以下のコードを見て、Apple による拒否につながる可能性のあるものがあれば返信してもらえますか?

BOOL canSendmail = [MFMailComposeViewController canSendMail];

if (!canSendmail) {


    NSMutableString* osVersion = [NSMutableString stringWithString:[[UIDevice currentDevice] systemVersion]];
    EventsLog* logs = [EventsLog getInstance];

    if ([osVersion characterAtIndex : 0] == '2'  || [osVersion characterAtIndex : 0] == '1' ) {
        UIAlertView *alert = [[UIAlertView alloc] initWithTitle:NSLocalizedString(@"Email", @"") 
                                                        message:NSLocalizedString(@"Failed to send E-mail.For this service you need to upgrade the iPhone OS to 3.0 version or later", @"")
                                                       delegate:self cancelButtonTitle:NSLocalizedString(@"OK", @"") otherButtonTitles: nil];
        [alert show];
        [alert release];



        [logs writeEvent : @"Cannot send e-mail - iPhone OS needs upgrade to at least 3.0 version" classSource:@"LogsSessionDetailViewController@sendEmail" details : (@" device OS version is %@",osVersion)];

        return;

    }
    UIAlertView *alert = [[UIAlertView alloc] initWithTitle:NSLocalizedString(@"Email", @"") 
                                                    message:NSLocalizedString(@"Failed to send E-mail.Please set an E-mail account and try again", @"")
                                                   delegate:self cancelButtonTitle:NSLocalizedString(@"OK", @"") otherButtonTitles: nil];
    [alert show];
    [alert release];

    [logs writeEvent : @"Cannot send e-mail "  
          classSource:@"LogsSessionDetailViewController@sendEmail" details : @"-  no e-mail account activated"];

    return;
}



UIAlertView *alert = [[UIAlertView alloc] initWithTitle:NSLocalizedString(@"Email", @"") 
                message:NSLocalizedString(@"The data you are sending will be used to improve the application. You are free to add any personal comments in this e-mail", @"")
                delegate:self cancelButtonTitle:NSLocalizedString(@"Cancel", @"") otherButtonTitles: nil];

[alert addButtonWithTitle:NSLocalizedString(@"Submit", @"")];
[alert show];
[alert release];

どうもありがとう、

アレックス。

4

1 に答える 1

2

アプリストアの承認/拒否については言いませんが、iPhone OS 2.x でコードがクラッシュする必要があります。

BOOL canSendmail = [MFMailComposeViewController canSendMail];

この呼び出しが可能かどうかを確認せずに (MFMailComposeViewController クラスは 2.x システムでは使用できません)。また、OS のバージョンを手動で確認することもお勧めできません。代わりに、最初MFMailComposeViewControllerに現在のランタイムに存在するかどうかを確認する必要があります。

if ( !NSClassFromString(@"MFMailComposeViewController") ){
    // Put code that handles OS 2.x version
    return;
}

if (![MFMailComposeViewController canSendMail]){
    // Put code that handles the case when mail account is not set up
    return;
}

//Finally, create and send your log
...

PS ターゲット設定で MessageUI フレームワークのリンケージ タイプを「弱い」に設定する必要があることを忘れないでください。リンケージ タイプが「必須」(デフォルト値) の場合、起動時に古いシステムでアプリケーションがクラッシュします。

于 2010-10-22T12:16:34.600 に答える