Coder Social home page Coder Social logo

lysimplelayout's Introduction

LYSimpleLayout

for example

    UIView *superview = self.view;
    
    UIView *view1 = [[UIView alloc] init];
    view1.backgroundColor = [UIColor redColor];
    [superview addSubview:view1];
    
    UIView *view2 = [[UIView alloc] init];
    view2.backgroundColor = [UIColor yellowColor];
    [superview addSubview:view2];
    
    UIView *view3 = [[UIView alloc] init];
    view3.backgroundColor = [UIColor greenColor];
    [superview addSubview:view3];
    
    // example 1
    view1.ly_top.equalTo(superview).ly_relateToTop.install();
    view1.ly_left.equalTo(superview).ly_relateToLeft.install();
    view1.ly_width.equalTo(superview).ly_relateToWidth.offset(-100).install();
    view1.ly_height.equalTo(superview).ly_relateToHeight.offset(-200).install();
    
    // example 2
    view2.ly_top.equalTo(view1).ly_relateToBottom.install();
    view2.ly_left.equalTo(superview).ly_relateToLeft.install();
    view2.ly_width.offset(100).install();
    view2.ly_bottom.equalTo(superview).ly_relateToBottom.offset(-10).install();
    
    // example 3
    @[view3.ly_top.equalTo(view2).ly_relateToTop,
      view3.ly_left.equalTo(view2).ly_relateToRight.offset(40),
      view3.ly_width.equalTo(view2).ly_relateToWidth.multipliedBy(2),
      view3.ly_bottom.equalTo(superview).ly_relateToBottom.offset(-10)].install();

lysimplelayout's People

Contributors

lynn-xuyt avatar

Stargazers

郭晓倩 avatar Mamba.cai avatar

Watchers

James Cloos avatar  avatar

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.