A drop-in component for creating GitHub issues for your app. You should only include this code in debug builds, as it can contain sensitive information like API keys.
Get an API access token from your GitHub settings:
If you want image uploads, create an 'anonymous' Imgur application and note its client ID.
Finally, IssueKit requires CocoaPods. Add it to your Podfile
:
pod 'IssueKit'
Run pod install
and you're off!
Setup ISKIssueManager
in application:didFinishLaunchingWithOptions:
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
// Reponame must be in '<username>/<reponame>' format.
[[ISKIssueManager defaultManager] setupWithReponame:@"usepropeller/IssueKit" andAccessToken:@"YOUR_GITHUB_ACCESS_TOKEN"];
// If you have an Imgur client ID
[[ISKIssueManager defaultManager] setupImageUploadsWithClientID:@"YOUR_IMGUR_CLIENT_ID"];
return YES;
}
With these settings, IssueKit will create an issue with an 'IssueKit' label on the repo you specified.
You can present the IssueKit prompt via a three-finger-double-tap anywhere on the window at anytime in your app. This may not work for perfectly for all apps, as some views and configurations swallow gestures or will have performance impacts.
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
// after installation
[[ISKIssueManager defaultManager] installGestureOnWindow: self.window];
// ...
}
You can call -presentIssueViewControllerOnViewController
when you want to show the IssueKit prompt after a specific event.
- (IBAction)showIssueViewController:(id)sender {
[[ISKIssueManager defaultManager] presentIssueViewControllerOnViewController:self];
}