Remote debugging on Mac OS X with XCode 6
I’m currently trying to remote debug one of my Mac application: build on Yosemite 10.10 and try to debug on my old MacBook under Lion 10.7.5 (which has not Xcode installed) As far as I know, the remote debug option has unfortunately disappeared since Xcode 4. Digging on forums didn’t give me a solution but it seems that one tool called debugserver is used when remote debugging on iPhone. This tool is included in the Xcode package (DeveloperDiskImage.dmg), for iPhone only. But it is possible to build it from the lldb sources: * Step 1: building debugserver for OS X on...
read moreMake your application reply to mailto: links
- For the application ‘Notifier Pro for Gmail’, I wanted to add a ‘compose’ functionality, and also to make it the default mail application when we click on a browser link ‘mailto:’ The first step is to add the following key to your .plist <key>CFBundleURLTypes</key> <array> <dict> <key>CFBundleURLName</key> <string>Email Address URL</string> <key>CFBundleURLSchemes</key> <array> <string>mailto</string> </array> <key>LSIsAppleDefaultForScheme</key> <true/>...
read more
Recent Comments