Git Product home page Git Product logo

reactivecocoalayout's Introduction

ReactiveCocoaLayout

ReactiveCocoaLayout is a framework for describing Cocoa and Cocoa Touch layouts in a reactive way, based on ReactiveCocoa.

This framework is very much a work in progress at the moment, and should be considered alpha quality. Breaking changes may happen often during this time.

Why Not Use Auto Layout?

RCL intends to offer the following advantages over Auto Layout:

  • Explicit and linear layout. Reactive layout proceeds in a linear fashion, making it easier to understand and debug the steps it takes along the way.
  • Top-down layout. A view's layout doesn't interact with its superview's layout unless the former's size or frame is explicitly incorporated in the latter's layout chain, creating a unidirectional relationship that leads to better encapsulation (no global priorities!) and less complexity. Bidirectional relationships are still possible, but must be made explicit.
  • Conditional layouts at runtime. RCL is built on the full power of ReactiveCocoa, and signals can be composed to dynamically disable and re-enable entire layout chains (like when you want to hide and show views) without actually modifying them.
  • Implicit animations. To animate the setting of a view's frame, simply add an animation method into the signal chain. No need to explicitly animate constants anywhere.
  • Incremental use. RCL can be used internally in views without any implementation details leaking out. Callers using Auto Layout or struts and springs can incorporate reactive views without knowing or caring how they perform layout internally. No UI-wide slowdowns or behavior changes just from using RCL!
  • Extensibility. RCL is made up of many independent bits of functionality unified into a framework. It's easy to extend it with your own functionality if you want it to behave differently.
  • Not a black box. Unlike AppKit and UIKit, RCL is an open source project, so you can crack open any particular bit and see why it behaves the way it does.

Getting Started

To start building the framework, clone this repository and then run script/bootstrap. This will automatically pull down any dependencies. Then, simply open ReactiveCocoaLayout.xcworkspace (note: not the .xcodeproj) and build.

To use ReactiveCocoaLayout in your project, you will need to include the ReactiveCocoaLayout.xcodeproj (note: not the .xcworkspace) file in your project, and link ReactiveCocoa and Archimedes into your application target.

License

ReactiveCocoaLayout is released under the MIT license. See LICENSE.md.

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.