Struct alternatives and similar libraries
Based on the "Tools" category.
Alternatively, view Struct alternatives based on common mentions on social networks and blogs.
-
SwiftGen
The Swift code generator for your assets, storyboards, Localizable.strings, โฆ โ Get rid of all String-based APIs! -
Xcodes.app
The easiest way to install and switch between multiple versions of Xcode - with a mouse click. -
Lona
A tool for defining design systems and using them to generate cross-platform UI code, Sketch files, and other artifacts. -
FBSimulatorControl
idb is a flexible command line interface for automating iOS simulators and devices -
GDPerformanceView-Swift
Shows FPS, CPU and memory usage, device model, app and iOS versions above the status bar and report FPS, CPU and memory usage via delegate. -
AppDevKit
AppDevKit is an iOS development library that provides developers with useful features to fulfill their everyday iOS app development needs. -
iSimulator
iSimulator is a GUI utility to control the Simulator, and manage the app installed on the simulator. -
Blade
Better asset workflow for iOS developers. Generate Xcode image catalogs for iOS / OSX app icons, universal images, and more. -
Realm Browser
DISCONTINUED. DEPRECATED - Realm Browser for Mac OS X has been replaced by realm-studio which is cross platform. -
Cookiecutter
DISCONTINUED. A template for new Swift iOS / macOS / tvOS / watchOS Framework project ready with travis-ci, cocoapods, Carthage, SwiftPM and a Readme file -
SuperDelegate
DISCONTINUED. SuperDelegate provides a clean application delegate interface and protects you from bugs in the application lifecycle -
abandoned-strings
Command line program that detects unused resource strings in an iOS or OS X application. -
AVXCAssets-Generator
AVXCAssets Generator takes path for your assets images and creates appiconset and imageset for you in just one click
CodeRabbit: AI Code Reviews for Developers

* Code Quality Rankings and insights are calculated and provided by Lumnify.
They vary from L1 to L5 with "L5" being the highest.
Do you think we are missing an alternative of Struct or a related project?
README
Struct
Introduction
struct
is a tool for iOS and Mac developers to automate the creation and management of Xcode projects.
Ever lamented over your unorganised project files? struct
solves that by making your filesystem be your project structure. How it is on disk is how it is in your project. Simple.
Need to have multiple variants of a project depending on how you're distributing to your customers? struct
's got you covered with target variants. Now you get a project for each variant, with the ability to add additional source files and resources. Great for whitelabelling and multiple distribution channels!
struct
makes working with Xcode easy. You get simple, predictable project files that any developer can understand. Just treat your Xcode projects as a build artifact and feel the weight lift off your shoulders.
Use a spec file to define your project:
---
version: 3.0.0
configurations:
debug:
release:
targets:
MyApp:
sources: src
i18n-resources: res
platform: ios
type: ":application"
configuration:
ASSETCATALOG_COMPILER_APPICON_NAME: AppIcon
INFOPLIST_FILE: Info.plist
PRODUCT_BUNDLE_IDENTIFIER: uk.lyptt.MyApp
Then just run struct generate
and struct
will do the rest.
You can find documented examples of the project specification in the examples folder.
Installation
struct
requires a minimum of Ruby 2.6.3, which is available in macOS Catalina.
You can install a higher version of Ruby with RVM on an older macOS version.
Install struct
from Rubygems:
You may need to use sudo when using the system-provided Ruby
$ gem install struct
Quick Start
Get started with adding struct
to your app:
Available Commands
To generate an Xcode project from your spec file, run the following from your project directory:
$ struct generate
To start the file watcher, run the following from your project directory:
$ struct watch
The project will be automatically regenerated whenever the project or any source files change.
Other commands can be discovered by viewing help:
$ struct help
Contributing
Bug reports and pull requests are welcome on GitHub at https://github.com/lyptt/struct.