aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTomáš Znamenáček2014-08-05 13:39:20 +0200
committerTomáš Znamenáček2015-01-07 15:05:11 +0100
commit0eb5c2e87388cb4a6aae9b7e4e92a270eb419b4d (patch)
tree0f851b4eedb23de0964bef291ea741e939fea6b6
parentdf1ae3ede08180aa8abffc56d8fe84844fe4c844 (diff)
downloadMASShortcut-0eb5c2e87388cb4a6aae9b7e4e92a270eb419b4d.tar.bz2
Updated documentation to point to the Demo target.
-rw-r--r--README.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/README.md b/README.md
index bbdf2c2..e1a0548 100644
--- a/README.md
+++ b/README.md
@@ -1,6 +1,6 @@
# Intro
-Some time ago Cocoa developers used a brilliant framework [ShortcutRecorder](http://wafflesoftware.net/shortcut/) for managing keyboard shortcuts in application preferences. However, it became incompatible with a new plugin architecture of Xcode 4.
+Some time ago Cocoa developers used a brilliant framework [ShortcutRecorder](http://wafflesoftware.net/shortcut/) for managing keyboard shortcuts in application preferences. However, it became incompatible with a new plugin architecture of Xcode 4.
The project MASShortcut introduces modern API and user interface for recording, storing and using global keyboard shortcuts. All code is compatible with Xcode 4.3, Mac OS X 10.7 and the sandboxed environment.
@@ -24,7 +24,7 @@ self.shortcutView.associatedUserDefaultsKey = kPreferenceGlobalShortcut;
}];
```
-To set an example, I made a demo project: [MASShortcutDemo](https://github.com/shpakovski/MASShortcutDemo). Enjoy!
+You can see a real usage example in the Demo target. Enjoy!
#Notifications
By registering for KVO notifications from `NSUserDefaultsController`, you can get a callback whenever a user changes the shortcut, allowing you to perform any UI updates, or other code handling tasks.