Simple Feedback library, forked from fladdict/AAMFeedback.
pod 'AAMFeedback', :git => 'https://github.com/azu/AAMFeedback.git'
You should use "> Cocoapods 0.25.0".
See Sample
AAMFeedbackViewController *vc = [[AAMFeedbackViewController alloc] init];
vc.toRecipients = @[@"[email protected]"];
vc.ccRecipients = nil;
vc.bccRecipients = nil;
UINavigationController *feedbackNavigation = [[UINavigationController alloc] initWithRootViewController:vc];
[self presentViewController:feedbackNavigation animated:YES completion:nil];
also be able to UITableViewController Subclass.
See FeedbackTableViewController
for details.
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
- ARCed.
- Device information is defined by the use of squarefrog/UIDeviceIdentifier.
- Custom BackgroundImage/Topics/Localized.string
- Added spanish locale.(thanks @ericertl)
CocoaPod 0.24.0 has fixed in CocoaPods 0.25.0.resource_bundles
issue.
You should update cocoapods
.
- 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