基本的にObj-Cから脳内変換できる場合には問題ないがSwiftでコピペしたい人向け
podfileに記載
pod "AAMFeedback"
インストール
pod install
Swiftでのコード
let avc = AAMFeedbackViewController()
avc.toRecipients = ["mail@send.to"]
avc.ccRecipients = nil
self.navigationController?.pushViewController(avc, animated: true)
ボタンのaction等に上記コードを設定すれば、navigationController以下でフォームが開く