Используя код как:
-(void)testMail
{
_service = [NSSharingService sharingServiceNamed:NSSharingServiceNameComposeEmail];
_service.recipients = @[@"anEmailAddress"];
_service.subject = @"Test Mail";
NSArray* items = @[@"This is the body"];
_service.delegate = self;
[_service performWithItems:items];
}
Как я могу определить, что пользователь отменил / полностью отправил почту, не отправляя электронную почту?