J'utilise ce code dans mon application qui m'aidera à envoyer une image.
Cependant, j'ai une vue d'image avec une image. Je n'ai pas de fichier dans appbundle mais j'ai l'image de mon côté. Comment puis-je changer le code ci-dessous? Quelqu'un peut -il me dire comment puis - je convertir myimage
à NSData
?
// Attach an image to the email
NSString *path = [[NSBundle mainBundle] pathForResource:@"rainy" ofType:@"jpg"];
NSData *myData = [NSData dataWithContentsOfFile:path];
[picker addAttachmentData:myData mimeType:@"image/jpeg" fileName:@"rainy"];