Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Get Shortcut Recorder working in Xcode 4

Is there any way to have a Shortcut Recorder in Objective-C, where the user can choose the shortcut?

I tried DDHotKey, which worked for me, but with this library users can not choose the shortcut themselves.

Then I tried to implement the Shortcut Recorder, but there I can only work with Xcode 3 because of the ibplugin.

So is there any way to have something like this in Xcode 4 ? :enter image description here

Mentioned Libraries:

DDHotKey: Here

Shortcut Recorder:Here

like image 924
dehlen Avatar asked Nov 05 '22 19:11

dehlen


1 Answers

IBPlugins do not work in Xcode 4, as you've found out. (File a bug if you want them back) However, this does not prevent you from instantiating the control programmatically...

like image 158
Dave DeLong Avatar answered Nov 13 '22 21:11

Dave DeLong