TestsTested | ✗ |
LangLanguage | Obj-CObjective C |
License | MIT |
ReleasedLast Release | Dec 2024 |
Maintained by Albert Parti.
To run the example project, clone the repo, and run pod install
from the Example directory first.
APFeedBack is available through CocoaPods. To install
it, simply add the following line to your Podfile:
pod "APFeedBack"
- (IBAction)feedback_Push:(id)sender;
{
APFeedTableViewController *fd = [[APFeedTableViewController alloc]init];
fd.developer_LogFile=NO; //To turn feedbacklog.txt on, turn on developer_LogFile = YES
fd.mailHTML=YES;
[self.navigationController pushViewController:fd animated:YES];
}
- (IBAction)feedback_modal:(id)sender
{
APFeedTableViewController *fd = [[APFeedTableViewController alloc]init];
UINavigationController *navController = [[UINavigationController alloc] initWithRootViewController:fd];
navController.modalTransitionStyle = UIModalTransitionStyleCrossDissolve;
[self presentViewController:navController animated:YES completion:nil];
}
[[DeviceInfo deviceManager]logfilecreate];
appsyscode, [email protected]
APFeedBack is available under the MIT license. See the LICENSE file for more info.