Gluten alternatives and similar libraries
Based on the "Tools" category.
Alternatively, view Gluten 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! -
Lona
A tool for defining design systems and using them to generate cross-platform UI code, Sketch files, and other artifacts. -
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 -
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
SaaSHub - Software Alternatives and Reviews
* 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 Gluten or a related project?
Popular Comparisons
README
Gluten
Unify XIB with its code.
Background
We always try to generalize some views that would be used in different places throughout the app. And one approach that we usually do is to make XIB along with its code.
But as we know, the XIB and its code don't automatically connected. And we tend do these things to make them connected :
- Instantiate the NIB.
- Add the loaded NIB as a subview.
- Setting frame or constraints needed.
Always doing those things for every view that we make, I think there's a better way. What we have to do is calling one function inside our view's code. Yes, just that! Follow the steps below to see how it goes.
Installation
Carthage
github "wilbertliu/Gluten"
CocoaPods
Add the following line into the Podfile
:
pod 'Gluten'
After that, run the following command :
$ pod install
Usage
Because Gluten
was created in extension, we don't need to import
anything.
Just call glueSourceAndView()
function inside our view's code. Here's an example :
import UIKit
class ReusedView: UIView {
override init(frame: CGRect) {
super.init(frame: frame)
glueSourceAndView()
}
required init?(coder aDecoder: NSCoder) {
super.init(coder: aDecoder)
glueSourceAndView()
}
init() {
super.init(frame: CGRect.zero)
glueSourceAndView()
}
}
Note that when we have a class named ReusedView
, the XIB name must be the same.
When you're not doing so, Gluten
would leave those XIB and code unconnected.
Support
If you have any feedbacks, feel free to submit a PR! And I'm more than happy to answer your questions, or maybe just some hi?! To do that, shoot me a DM or tweet @wilbertliu
License
MIT ยฉ Wilbert Liu
*Note that all licence references and agreements mentioned in the Gluten README section above
are relevant to that project's source code only.