MFMailComposeViewController を使用してアプリから HTML メールを送信しようとしていますが、右側に奇妙なパディングがあるという問題が発生しています。
私が使用しているHTMLは次のとおりです。
</br>
</br>
<a href='itms-apps://itunes.apple.com/app/id444395321'>
<img src='http://brianensorapps.com/whirlworld/wwad.png' height='80' width='320' style='position:relative;left:-10px;margin-right:0px;padding-right:0px;'/>
</a>
どの適切な CSS タグが必要かわかりません。どちらも現在機能していません。position と left タグは、左余白をなくすためのものです。
これは、ユーザーがバナーを過ぎて右にスクロールできる場所を回避しようとしている状況の写真です。
また、MFMailComposeViewController を表示するためのコードを投稿するように要求されました。
sharingVC = [[MFMailComposeViewController alloc] init];
sharingVC.mailComposeDelegate = self;
sharingVC.navigationBar.tintColor = [UIColor lightGrayColor];
[sharingVC setSubject:@"Check out this app"];
[sharingVC setMessageBody:[NSString stringWithContentsOfFile:[[NSBundle mainBundle] pathForResource:@"sharingEmail.html"] usedEncoding:nil error:nil] isHTML:YES];
[self presentViewController:sharingVC animated:YES completion:nil];