Giter Site home page Giter Site logo

tayphoon / briggs Goto Github PK

View Code? Open in Web Editor NEW

This project forked from auswahlaxiom/briggs

0.0 2.0 0.0 63 KB

A reimagination of UITraitCollection

Home Page: https://possiblemobile.com/2016/08/reimagining-uitraitcollection-with-briggs/

License: MIT License

Ruby 0.69% Swift 96.61% Objective-C 2.71%

briggs's Introduction

Briggs

A reimagination of UITraitCollection

CocoaPods Compatible Carthage Compatible Platform Docs Swift 3.0 GitHub license

As seen on POSSIBLE Mobile Insights!

What if setting arbitrary constraints, views, and behaviors for specific trait collections was as easy as:

let exclusiveButton = UIButton(type: .System)
let traits: [AdaptiveAttribute] = [
    Idiom.Phone,
    Scale.TwoX,
    ForceTouch.Available,
    SizeClass.VerticalRegular,
    SizeClass.HorizontalCompact,
]

addViewFor(traits, view: exclusiveButton, to: view, withConstraints: [
    exclusiveButton.centerXAnchor.constraintEqualToAnchor(view.centerXAnchor),
    exclusiveButton.centerYAnchor.constraintEqualToAnchor(view.centerYAnchor),
])

Abstract

UITraitEnvironment is just too cool to be limited to views and view controllers!

Briggs seeks to provide a crucial missing component in Apple’s API: UITraitEnvironment.addChildTraitEnvironment:, and adds a healthy dose of sugar to UITraitCollection.

Components

  • AdaptiveElement: The child—receives trait collection information
  • AdaptiveInterface: The parent—provides trait collection information
  • AdaptiveAttribute: The trait—describes trait collection information

Containers

  • AdaptiveBehavior: Associates a behavior and counter-behavior with a set of traits

    Behavior is executed if incoming traits match, else counter-behavior is executed.

  • AdaptiveConstraintContainer: Associates a set of constraints with a set of traits

    Constraints are activated if incoming traits match, else they are deactivated.

  • AdaptiveViewContainer: Associates a view with a set of traits

    View is added to hierarchy if traits match, else view is removed.

Requirements

  • iOS 9.0+
  • Xcode 7.3+

Installation

CocoaPods

CocoaPods is a dependency manager for Cocoa projects. You can install it with the following command:

$ gem install cocoapods

To integrate Briggs into your Xcode project using CocoaPods, specify it in your Podfile:

source 'https://github.com/CocoaPods/Specs.git'
platform :ios, '9.0'
use_frameworks!

target '<Your Target Name>' do
    pod 'Briggs', '~> 2.0.0'
end

Then, run the following command:

$ pod install

Carthage

Carthage is a decentralized dependency manager that builds your dependencies and provides you with binary frameworks.

You can install Carthage with Homebrew using the following command:

$ brew update
$ brew install carthage

To integrate Briggs into your Xcode project using Carthage, specify it in your Cartfile:

github "auswahlaxiom/Briggs" ~> 2.0.0

Run carthage update to build the framework and drag the built Briggs.framework into your Xcode project.

Manually

If you prefer not to use either of the aforementioned dependency managers, you can integrate Briggs into your project manually.

Embedded Framework

  • Open up Terminal, cd into your top-level project directory, and run the following command if your project is not initialized as a git repository:
$ git init
  • Add Briggs as a git submodule by running the following command:
$ git submodule add https://github.com/auswahlaxiom/Briggs.git
  • Open the new Briggs folder, and drag the Briggs.xcodeproj into the Project Navigator of your application's Xcode project.

    It should appear nested underneath your application's blue project icon. Whether it is above or below all the other Xcode groups does not matter.

  • Select the Briggs.xcodeproj in the Project Navigator and verify the deployment target matches that of your application target.

  • Next, select your application project in the Project Navigator (blue project icon) to navigate to the target configuration window and select the application target under the "Targets" heading in the sidebar.

  • In the tab bar at the top of that window, open the "General" panel.

  • Click on the + button under the "Embedded Binaries" section.

  • You will see two different Briggs.xcodeproj folders. It does not matter which one you select the framework from.

  • Select Briggs.framework and click Add.

    The Briggs.framework is automagically added as a target dependency, linked framework and embedded framework in a copy files build phase which is all you need to build on the simulator and a device.

  • Add import Briggs a source file and get coding!

Usage

For an in-depth dive into Briggs, please visit Reimagining UITraitCollection with Briggs.

Credits

Briggs was created by Ada Turner, an iOS developer at POSSIBLE Mobile.

License

Briggs is released under the MIT license. See LICENSE for details.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.