Skip to content

enigmo/AAMFeedback

 
 

Repository files navigation

AAMFeedback

Simple Feedback library, forked from fladdict/AAMFeedback.

screenshot

Installation

pod 'AAMFeedback', :git => 'https://github.com/azu/AAMFeedback.git'

You should use "> Cocoapods 0.25.0".

Usage

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.

Custom Localization

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:

Thanks Move lproj directories to Appirater.bundle when using CocoaPods by eager · Pull Request #129 · arashpayan/appirater.

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)

Note

less than CocoaPods 0.24.0

CocoaPod 0.24.0 has resource_bundles issue. fixed in CocoaPods 0.25.0.

You should update cocoapods.

Contributing

  1. Fork it!
  2. Create your feature branch: git checkout -b my-new-feature
  3. Commit your changes: git commit -am 'Add some feature'
  4. Push to the branch: git push origin my-new-feature
  5. Submit a pull request :D

License

New BSD License

About

iOS Feedback UI library(forked).

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Objective-C 97.4%
  • Ruby 2.6%