User mgorbach - Stack Overflowmost recent 30 from stackoverflow.com2009-12-06T17:33:28Zhttp://stackoverflow.com/feeds/user/36331http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/146297/what-are-those-little-xcode-tips-tricks-you-wish-you-knew-about-2-years-ago/303580#30358019Answer by mgorbach for What are those little Xcode tips & tricks you wish you knew about 2 years ago?mgorbach2008-11-19T22:15:18Z2008-11-19T22:15:18Z<p>Control-2 to access the popup list of functions/methods/symbols in this file. This is super useful because with this shortcut you can navigate through a file entirely using the keyboard. When you get to the list, start typing characters and the list will type-select to the symbol you are looking for.</p>
http://stackoverflow.com/questions/267318/creating-an-os-x-service/279109#2791090Answer by mgorbach for Creating an OS X Servicemgorbach2008-11-10T20:48:17Z2008-11-10T20:48:17Z<p>Make sure you are launching your app first to get the system to see the Service.
Make sure you are registering the services handler in your app using
- setServicesProvider:</p>
<p>Also, check the Console log as that might give you some useful error info.</p>