フル解像度のアセットを電子メールに埋め込むことはできないようです。fullScreenImage 表現を使用するとうまく機能します。画像サイズにはいくつかの制限があるはずですが、それに関する情報は見つかりませんでした。私は iPhone 4S を使用しており、フル解像度の画像は 2448 x 3264 ピクセルです。
コード:
ALAssetRepresentation *assetRepresentation = [_asset defaultRepresentation];
CGImageRef imageRef = [assetRepresentation fullResolutionImage];
UIImage *img = [UIImage imageWithCGImage:imageRef scale:[assetRepresentation scale] orientation:[assetRepresentation orientation]];
UIActivityViewController *activityController = [[UIActivityViewController alloc] initWithActivityItems:@[img] applicationActivities:nil];
[self presentViewController:activityController animated:YES completion:nil];
ありがとう!