Skip to content

Some Xcode tips & tricks that I find *kinda* useful...

Notifications You must be signed in to change notification settings

exalted/Xcode-Tips

Repository files navigation

Xcode-Tips

Some Xcode tips & tricks that I find kinda useful...

Styling

Make text not be antialiased (useful for non-retina screens) — makes great sense using Monaco font. (Reference)

defaults write com.apple.dt.Xcode NSFontDefaultScreenFontSubstitutionEnabled -bool YES

Faster build times by leveraging multi-core CPU

defaults write com.apple.dt.Xcode IDEBuildOperationMaxNumberOfConcurrentCompileTasks $(sysctl -n hw.ncpu)

Ref.: http://merowing.info/2015/12/little-things-that-can-make-your-life-easier-in-2016/

Disable plugins

$ PLUGINS_DIR=/Applications/Xcode.app/Contents/PlugIns
$ f() { local PLUGINS=("IDEGit" "IDESubversion" "IDERepositoryViewer"); for i in ${PLUGINS[@]}; do mv -vni "$PLUGINS_DIR/$i.ideplugin" "$PLUGINS_DIR/$i-disabled.ideplugin"; done }; f; unset -f f;

Sweet repos

Thousand words ;-)

Scheme Run Arguments

All Exceptions Break On Throw

Exception Breakpoint

For details for the trick above: http://natashatherobot.com/xcode-debugging-trick/

Using the power of User Breakpoints

For details for the trick above: http://merowing.info/2015/12/little-things-that-can-make-your-life-easier-in-2016/

Hide Debugger When Exists Unexpectedly

About

Some Xcode tips & tricks that I find *kinda* useful...

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages