Giter Site home page Giter Site logo

bsuiviewrearranger's Introduction

#BSUIViewRearranger by @_karsten_

##About The problem is simple: you create an app in portrait mode, think about the landscape UI and figure that all you want is the same controls, but just a different layout.

BSUIViewRearranger is a simple class that helps with exactly that. You create two nibs, one for portrait, one for landscape and then you let BSUIViewRearranger do all the figuring outs for you.

##Usage In your view controller you implement the method to make your app work in landscape mode:

- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation { return YES; }

and the rotation method is implemented like that:

- (void)willRotateToInterfaceOrientation:(UIInterfaceOrientation)toInterfaceOrientation duration:(NSTimeInterval)duration { [UIView animateWithDuration:duration animations:^(void) { [BSUIViewRearranger rearrangeView: self.view toMode: toInterfaceOrientation usingLandscapeNib: @"MainViewLandscape" portraitNib: @"MainView" controllerClass: [self class]]; }]; }

That's all you need to do. You pass the view, the orientation and the nib names. You also need to pass the view controller class that can open the nibs.

##Constrains The algorithm to rearrange the views is no magic and doesn't have any heuristics about how to match the views. It only assumes one thing: both nibs create a view that has the exact same structure. Easiest thing to do is save your nib in portrait mode and then save it under a new name, rotate it and rearrange your controls. Do not nest views in one nib but not in the other!

Karsten

bsuiviewrearranger's People

Contributors

karstenbriksoft avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 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.