LoginSignup
1
1

More than 5 years have passed since last update.

SwiftでAAMFeedbackを実装する

Last updated at Posted at 2015-08-09

基本的に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以下でフォームが開く

1
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1