Simple Feedback library, forked from fladdict/AAMFeedback.
pod 'AAMFeedback', :git => 'https://github.com/PlusR/AAMFeedback.git'
See Example
AAMFeedbackViewController *feedbackViewController = [[AAMFeedbackViewController alloc] init];
feedbackViewController.toRecipients = @[@"[email protected]"];
feedbackViewController.ccRecipients = nil;
feedbackViewController.bccRecipients = nil;
UINavigationController *feedbackNavigation = [[UINavigationController alloc] initWithRootViewController:feedbackViewController];
[self presentViewController:feedbackNavigation animated:YES completion:nil];
AAMFeedbackViewController is a UITableViewController Subclass.
You can use setting AAMFeedbackViewController
to the view controller's custom class in storyboard.
For details, See FeedbackTableViewController
of Example.
When using AAMFeedback via CocoaPods, you should following setting to custom localization.
[AAMFeedbackViewController setAlwaysUseMainBundle:YES];
You’ll need to manually create/copy AAMLocalizable.strings to your project.
Example project:
Difference from original fladdict/AAMFeedback
- ARC ed.
- Device information is defined by the use of squarefrog/UIDeviceIdentifier.
- Custom BackgroundImage/Topics/Localized.string
- Added spanish locale.(thanks @ericertl)
- Fork it!
- Create your feature branch:
git checkout -b my-new-feature
- Commit your changes:
git commit -am 'Add some feature'
- Push to the branch:
git push origin my-new-feature
- Submit a pull request :D
New BSD License