iOS: Remove Storyboards

How to Remove the Dependency of Main.storyboard File in an iOS Project 1) Delete Main.storyboard File In the project navigator, delete the Main.storyboard file (when prompted, click “Move to Trash”). 2) Delete “Storyboard Name” Reference in Info.plist File In the project navigator, select the Info.plist file. Press Cmd+F and type “Storyboard Name” to find and delete the highlighted line. (To delete, use Cmd+Backspace) 3) Delete “UIKit Main Storyboard …” Reference from Build Settings In the project navigator, select the very first row (project name) and on the right side, select the “Build Settings” tab....

May 28, 2024 · 1 min

How to Integrate Xcode Frameworks and CircleCI

Using Xcode Frameworks with macOS targets for fast test running and CI integration. Introduction When building software is a good idea to write tests. For the sake of simplicity (you’ll see why later), I’m going to put unit, integration and system tests into the same tests folder. We will leave end-to-end tests (e2e tests from now on) in a separate folder. Warning: This post was intended for Xcode 13.4.1 The idea of this post is to show how to:...

August 2, 2022 · 3 min