https://www.vadimbulavin.com/xcode-source-editor-extension-tutorial/
Xcode Source Editor Extensions
Mar 21, 2020
Mar 21, 2020
May 30, 2018
Jul 17, 2017
There are lots of great ways to navigate and learn a new iOS codebase. Here’s a good one to remember. Set a breakpoint for:
-[UIViewController initWithNibName:bundle:]
with an action to print:
po $arg1
Jun 25, 2017
See how long Xcode takes to build each swift file.
https://github.com/RobertGummesson/BuildTimeAnalyzer-for-Xcode
May 19, 2017
You know about Clean Build Folder, right?
https://useyourloaf.com/blog/xcode-4-deriveddata-and-cleaning-the-build-directory/
May 15, 2017
Apply this patch to your Xcode Server if you’re trying to edit a Bot’s test devices/simulators and see either ‘No Devices Found’ or if you see the list populated very, very slowly:
May 10, 2017
Unit tests let you test classes in the main target using “@testable import TargetAppName”. UI tests are a little different since they test at an arm’s length away.
“Since UI tests are an entirely separate module from the app and are not run inside the app as logic tests …
Aug 18, 2012
Follow these steps to create a distribution build in Xcode 4:
http://soulwithmobiletechnology.blogspot.com/2011/03/how-to-create-distribution-build-with.html
Aug 11, 2012
A great front-end developer I know is getting into iOS development (horray!), and he had a simple question that he wanted answered in a minute without having to go through all the Xcode and iOS tutorials:
How do I run my Xcode project on my iPhone?
So here it is …