StoryboardMerge alternatives and similar libraries
Based on the "Tools" category.
Alternatively, view StoryboardMerge 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! -
Insanity
Meta-programming for Swift, stop writing boilerplate code. -
Lona
A tool for defining design systems and using them to generate cross-platform UI code, Sketch files, and other artifacts. -
XcodeGen
A Swift command line tool for generating your Xcode project -
Tweaks
An easy way to fine-tune, and adjust parameters for iOS apps in development. -
appledoc
Objective-c code Apple style documentation set generator. -
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 -
FengNiao
A command line tool for cleaning unused resources in Xcode. -
LifetimeTracker
Find retain cycles / memory leaks sooner. -
SourceKitten
An adorable little framework and command line tool for interacting with SourceKit. -
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. -
LicensePlist
A license list generator of all your dependencies for iOS applications -
ProvisionQL
Quick Look plugin for apps and provisioning profile files -
Provisioning
A Quick Look plug-in for .mobileprovision files -
AppDevKit
AppDevKit is an iOS development library that provides developers with useful features to fulfill their everyday iOS app development needs. -
ThisCouldBeUsButYouPlaying
:black_joker: Generate Swift Playgrounds for any library. -
Laurine
Laurine - Localization code generator written in Swift. Sweet! -
DBDebugToolkit
Set of easy to use debugging tools for iOS developers & QA engineers. -
Attabench
Microbenchmarking app for Swift with nice log-log plots -
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. -
ViewMonitor
ViewMonitor can measure view positions with accuracy. -
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 -
Rugby
🏈 Cache CocoaPods for faster rebuild and indexing Xcode project -
WatchdogInspector
Shows your current framerate (fps) in the status bar of your iOS app -
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. -
Swift Package Index
The Swift Package Index is the place to find Swift packages! -
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
Appwrite - The Open Source Firebase alternative introduces iOS support
* 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 StoryboardMerge or a related project?
README
StoryboardMerge
Storyboard diff and merge tool which:
- compares and merges two storyboard files,
- provides an automatic merge-facility,
The storyboarding is a new UI design feature introduced with the Xcode 4.2 which allows to describe all the application’s UI in one file. This very handy mechanism has one major drawback. Because all the UI lives in one file, the whole UI design process is very prone to revision control conflicts. Moreover, the Xcode standard merging mechanism treats storyboard files like ordinary text files which further complicates merging. The StoryboardMerge solves those problems.
How to use
Load two conflicted storyboard files from disk, SVN or Git and click Compare.
The StoryboardMerge compares files and shows conflicts (differences). Use checkboxes to tell the StoryboardMerge how to solve conflicts.
After setting all checkboxes click Merge. You will see the merged storyboard in a right panel.
The StoryboardMerge will validate a new storyboard and mark in red incorrect elements.
Click Save to write a new storyboard or override the old one.
How to use as a git mergetool
Edit your ~/.gitconfig
file and add the following section:
[mergetool "storyboard"]
name = StoryboardMerge interactive merge
cmd = storyboard-merge $BASE $LOCAL $REMOTE $MERGED
trustExitCode = false
Copy storyboard-merge into /usr/local/bin
and make it executable:
$ chmod 755 /usr/local/bin/storyboard-merge
When a storyboard conflict occurs:
$ git status
On branch master
Your branch and 'origin/master' have diverged,
and have 1 and 1 different commit each, respectively.
(use "git pull" to merge the remote branch into yours)
You have unmerged paths.
(fix conflicts and run "git commit")
Unmerged paths:
(use "git add <file>..." to mark resolution)
both modified: Storyboards/Base.lproj/Main.storyboard
no changes added to commit (use "git add" and/or "git commit -a")
Run:
$ git mergetool -t storyboard
Which will give you the following prompt in your terminal:
$ git mergetool -t storyboard
Merging:
Storyboards/Base.lproj/Main.storyboard
Normal merge conflict for 'Storyboards/Base.lproj/Main.storyboard':
{local}: modified file
{remote}: modified file
Hit return to start merge resolution tool (storyboard):
Hit return
to accept the default (as defined in your ~/.gitconfig
above.) Which will launch StoryboardMerge and give you the following prompt in your terminal:
Storyboards/Base.lproj/Main.storyboard seems unchanged.
Was the merge successful? [y/n]
When your merge is complete, press the StoryboardMerge 'save' toolbar icon, which will save the file to the proper place, then return to your terminal and type 'y' to accept the merge. (Or 'n' if something went wrong and you'd like to start over.)
After merging I'd recommend opening the file in Xcode and verifying everything is okay and to allow it to rewrite any changes is sees fit before committing your changes.
Building
IMPORTANT: StoryboardMerge uses CocoaPods so make sure to always open the workspace file (StoryboardMerge.xcworkspace) instead of the project file (StoryboardMerge.xcodeproj) when building.