Struct alternatives and similar libraries
Based on the "Tools" category.
Alternatively, view Struct alternatives based on common mentions on social networks and blogs.
-
Awesome-Design-Tools
The best design tools and plugins for everything 👉 -
R.swift
Strong typed, autocompleted resources like images, fonts and segues in Swift projects -
SwiftGen
The Swift code generator for your assets, storyboards, Localizable.strings, … — Get rid of all String-based APIs! -
Lona
A tool for defining design systems and using them to generate cross-platform UI code, Sketch files, and other artifacts. -
Tweaks
An easy way to fine-tune, and adjust parameters for iOS apps in development. -
Xcodes.app
The easiest way to install and switch between multiple versions of Xcode - with a mouse click. -
FBSimulatorControl
idb is a flexible command line interface for automating iOS simulators and devices -
LicensePlist
A license list generator of all your dependencies for iOS applications -
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. -
ProvisionQL
Quick Look plugin for mobile apps and provisioning profiles -
SourceKitten
An adorable little framework and command line tool for interacting with SourceKit. -
AppDevKit
AppDevKit is an iOS development library that provides developers with useful features to fulfill their everyday iOS app development needs. -
DBDebugToolkit
Set of easy to use debugging tools for iOS developers & QA engineers. -
ThisCouldBeUsButYouPlaying
:black_joker: Generate Swift Playgrounds for any library. -
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
DEPRECATED - Realm Browser for Mac OS X has been replaced by realm-studio which is cross platform. -
Cookiecutter
A template for new Swift iOS / macOS / tvOS / watchOS Framework project ready with travis-ci, cocoapods, Carthage, SwiftPM and a Readme file -
WatchdogInspector
Shows your current framerate (fps) in the status bar of your iOS app -
Swift Package Index
The Swift Package Index is the place to find Swift packages! -
SuperDelegate
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. -
fastlane-plugin-appicon
Generate required icon sizes and iconset from a master application icon. -
AVXCAssets-Generator
AVXCAssets Generator takes path for your assets images and creates appiconset and imageset for you in just one click -
Shark
Swift CLI for strong-typing images, colors, storyboards, fonts and localizations
Appwrite - The open-source backend cloud platform
* 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.