使用SMTP发送邮件后应用程序崩溃

时间:2013-05-06 10:48:49

标签: iphone ios objective-c

在我的iPhone应用程序中,我使用SMTP发送电子邮件。在发送邮件时,它完美运行。但有时在邮件发送后,应用程序突然崩溃并显示以下错误消息

 <Warning>: Application 'UIKitApplication:com.myid.smtpsample[0x2630]' exited abnormally with signal 11: Segmentation fault: 11
��May  6 17:07:21 Device-3 ReportCrash[13041] <Error>: libMobileGestalt copySystemVersionDictionaryValue: Could not lookup ReleaseType from system version dictionary

这是我的代码:

-(void) sendEmail
{
    NSData *imagedata=UIImageJPEGRepresentation(image, 0.2f);

    SKPSMTPMessage *Message = [[SKPSMTPMessage alloc] init];
    Message.fromEmail = @"my email";
    Message.toEmail = receiverEmailString;
    Message.relayHost = @"smtp.gmail.com";
    Message.requiresAuth = YES;
    Message.login = @"my email";
    Message.pass = @"my password";
    Message.subject = @"Details";
    Message.wantsSecure = YES; 
    Message.delegate = self;

    NSDictionary *plainPart = [NSDictionary dictionaryWithObjectsAndKeys:@"text/plain",kSKPSMTPPartContentTypeKey,@"Message Body",kSKPSMTPPartMessageKey,@"8bit",kSKPSMTPPartContentTransferEncodingKey,nil];

    NSDictionary *vcfPart= [NSDictionary dictionaryWithObjectsAndKeys:@"image/jpeg;\r\n\tx-unix-mode=0644;\r\n\tname=\"MyPhoto.jpg\"",kSKPSMTPPartContentTypeKey,
                             @"attachment;\r\n\tfilename=\"MyPhoto.jpg\"",kSKPSMTPPartContentDispositionKey,[imagedata encodeBase64ForData],kSKPSMTPPartMessageKey,@"base64",kSKPSMTPPartContentTransferEncodingKey,nil];

    Message.parts = [NSArray arrayWithObjects:plainPart,vcfPart,nil];
    [Message send];

}


- (void)messageFailed:(SKPSMTPMessage *)message error:(NSError *)error{

    NSLog(@"delegate - error(%d): %@", [error code], [error localizedDescription]);
}

- (void)messageSent:(SKPSMTPMessage *)message{

    NSLog(@"delegate - message sent");


}

请告诉我我在哪里做错了

2 个答案:

答案 0 :(得分:4)

我知道我回答这个问题有点晚了。但可能会帮助别人。所以这里。

我遇到了同样的问题,这就是我解决它的方法。我唯一需要做的就是添加对SKPSMTPMessage对象的强引用,并在发送电子邮件时引用它。奇迹般有效。 (哦,我也离开了message = nil;,这对我没有任何问题。)

     @interface MyViewController ()    
     @property (nonatomic, strong) SKPSMTPMessage *Message;
     @end

    -(void) sendEmail
    {
        _Message = [[SKPSMTPMessage alloc] init];
        _Message.fromEmail = @"my email";
        _Message.toEmail = receiverEmailString;
        ...
        [_Message send];

    }


    - (void)messageFailed:(SKPSMTPMessage *)message error:(NSError *)error{
        message = nil;
        NSLog(@"delegate - error(%d): %@", [error code], [error localizedDescription]);
    }

    - (void)messageSent:(SKPSMTPMessage *)message{    
        message = nil;
        NSLog(@"delegate - message sent"); 
    }

希望这有帮助。

答案 1 :(得分:0)

您在方法中创建Message,将其作为委托给予自己(暗示它在完成时向您发送消息),但在发送消息之后,当您离开该方法时,ARC将释放消息。因此,创建一个Message ivar,并且只有在它告诉你成功或失败之后才将其设置为nil(并且在分派给主线程的块中执行此操作,在委托回调中直接释放nil或释放对象是冒险的。)

PS:另外,请为类实例使用小写,为类对象使用大写首字母。