Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Objective-C example code in README.md #123

Closed
cool8jay opened this issue Apr 18, 2020 · 1 comment · Fixed by #124
Closed

Objective-C example code in README.md #123

cool8jay opened this issue Apr 18, 2020 · 1 comment · Fixed by #124

Comments

@cool8jay
Copy link

Tested on my Mac. Please add.

#import <ShortcutRecorder/ShortcutRecorder.h>

NSUserDefaultsController *defaults = [NSUserDefaultsController sharedUserDefaultsController];
NSString *keyPath = @"values.shortcut";
NSDictionary *options = @{NSValueTransformerNameBindingOption:NSKeyedUnarchiveFromDataTransformerName};
    
SRShortcutAction *beepAction = [SRShortcutAction shortcutActionWithKeyPath:keyPath
                                                                      ofObject:defaults
                                                                 actionHandler:^BOOL(SRShortcutAction *anAction) {
    NSBeep();
    return YES;
}];
    
[[SRGlobalShortcutMonitor sharedMonitor] addAction:beepAction forKeyEvent:SRKeyEventTypeDown];
    
SRRecorderControl *recorder = [[SRRecorderControl alloc] init];
[recorder bind:NSValueBinding toObject:defaults withKeyPath:keyPath options:options];
recorder.objectValue = [SRShortcut shortcutWithKeyEquivalent:@"⇧⌘A"];
Kentzo added a commit that referenced this issue Apr 18, 2020
Kentzo added a commit that referenced this issue Apr 18, 2020
@Kentzo
Copy link
Owner

Kentzo commented Apr 18, 2020

Thank you! I have slightly changed the syntax for symmetry.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants