Git Product home page Git Product logo

canvast / flexlib Goto Github PK

View Code? Open in Web Editor NEW

This project forked from zhenglibao/flexlib

1.0 2.0 0.0 10.79 MB

FlexLib is a framework for creating native iOS applications using a human-readable markup language, similar to Android and .NET development way. It's based on flexbox model, easy & powerful. Trash xib & storyboard, autolayout & masonry now. :)

License: MIT License

Objective-C 60.32% Swift 3.26% Ruby 0.39% Shell 5.20% C 30.83%

flexlib's Introduction

FlexLib

CI Status Version License Platform

FlexLib

中文版

FlexLib is an Objective-C layout framework for iOS. It's based on flexbox model which is standard for web layout. So the layout capability is powerful and easy to use.

With FlexLib, you can write iOS UI much faster than before, and there are better adaptability.


Screenshots

This demo is hot preview:

example0

Can you imagine you almost need nothing code to implement the following effect?

example1 example2

Avoid keyboard automatically

example3

iPhone X adaption

iPhoneX


Feature

  • layout based on xml format
  • auto variable binding
  • onPress event binding
  • support layout attribute (padding/margin/width/...)
  • support view attribute (eg: bgColor/fontSize/...)
  • support reference predefined style
  • view attributes extensible
  • support modal view
  • table cell height calculation
  • support iPhoneX perfectly
  • support hot preview
  • auto adjust view to avoid keyboard
  • keyboard toolbar to switch input field
  • cache support for release mode
  • support Swift project
  • view all layouts in one page (Control+V)
  • multi-language support

Usage

Use xml layout file for ViewController:

  • Write layout with xml file.

The following is a demo file:

<UIView layout="flex:1,justifyContent:center,alignItems:center" attr="bgColor:lightGray">
    <UIView layout="height:1,width:100%" attr="bgColor:red"/>
    <FlexScrollView name="_scroll" layout="flex:1,width:100%,alignItems:center" attr="vertScroll:true">
        <UILabel name="_label" attr="@:system/buttonText,text:You can run on iPhoneX,color:blue"/>
        <UIView onPress="onTest:" layout="@:system/button" attr="bgColor:#e5e5e5">
            <UILabel attr="@:system/buttonText,text:Test ViewController"/>
        </UIView>
        <UIView onPress="onTestTable:" layout="@:system/button" attr="bgColor:#e5e5e5">
            <UILabel attr="@:system/buttonText,text:Test TableView"/>
        </UIView>
        <UIView onPress="onTestScrollView:" layout="@:system/button" attr="bgColor:#e5e5e5">
            <UILabel attr="@:system/buttonText,text:Test ScrollView"/>
        </UIView>
        <UIView onPress="onTestModalView:" layout="@:system/button" attr="bgColor:#e5e5e5">
            <UILabel attr="@:system/buttonText,text:Test ModalView"/>
        </UIView>
        <UIView onPress="onTestLoginView:" layout="@:system/button" attr="bgColor:#e5e5e5">
            <UILabel attr="@:system/buttonText,text:Login Example"/>
        </UIView>
    </FlexScrollView>
</UIView>

You can use any UIView subclass in xml file. Every element can have four attribute: name, onPress, layout, attr.

Every element with name attribute will bind to variable in owner.

Every element with onPress attribute will bind to selector in owner.

You can specify any flexbox attribute in layout attribute, like width、height、padding、margin、justifyContent、alignItems etc.

'attr' support view attribute, like background color, font, text, ...

  • Derive view controller class from FlexBaseVC
@interface FlexViewController : FlexBaseVC
@end
@interface FlexViewController ()
{
    // these will be binded to those control with same name in xml file
    FlexScrollView* _scroll;
    UILabel* _label;
}
@end

@implementation FlexViewController

- (void)viewDidLoad
{
    [super viewDidLoad];
    
    self.navigationItem.title = @"FlexLib Demo";
}
- (void)didReceiveMemoryWarning
{
    [super didReceiveMemoryWarning];
    // Dispose of any resources that can be recreated.
}
- (void)onTest:(id)sender {
    TestVC* vc=[[TestVC alloc]init];
    [self presentViewController:vc animated:YES completion:nil];
}
- (void)onTestTable:(id)sender {
    TestTableVC* vc=[[TestTableVC alloc]init];
    [self presentViewController:vc animated:YES completion:nil];
}

@end
  • Now you can use the controller as normal:
    FlexViewController *vc = [[FlexViewController alloc] init];

    UINavigationController *nav = [[UINavigationController alloc] initWithRootViewController:vc];
    self.window.rootViewController = nav;

    [self.window makeKeyAndVisible];

Use xml layout file for TableCell:

  • Write layout with xml file. There is no difference than view controller layout except that it will be used for tabel cell.

  • Derive table cell class from FlexBaseTableCell:

@interface TestTableCell : FlexBaseTableCell
@end
@interface TestTableCell()
{
    UILabel* _name;
    UILabel* _model;
    UILabel* _sn;
    UILabel* _updatedBy;

    UIImageView* _return;
}
@end
@implementation TestTableCell
@end
  • In cellForRowAtIndexPath callback, call initWithFlex to build cell. In heightForRowAtIndexPath, call heightForWidth to calculate height
- (nonnull UITableViewCell *)tableView:(nonnull UITableView *)tableView cellForRowAtIndexPath:(nonnull NSIndexPath *)indexPath {

    static NSString *identifier = @"TestTableCellIdentifier";
    TestTableCell* cell = [tableView dequeueReusableCellWithIdentifier:identifier];
    if (cell == nil) {
        cell = [[TestTableCell alloc]initWithFlex:nil reuseIdentifier:identifier];
    }
    return cell;
}
- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath
{
    if(_cell==nil){
        _cell = [[TestTableCell alloc]initWithFlex:nil reuseIdentifier:nil];
    }
    return [_cell heightForWidth:_table.frame.size.width];
}

Use xml layout file for other view:

  • Write layout xml file.

  • Use FlexFrameView to load xml file, you can set frame or make it flexible. After initiation, maybe you need to call layoutIfNeeded before add it to other view.

  • add this FlexFrameView to other traditional view

    //load TableHeader.xml as UITableView header
    
    CGRect rcFrame = CGRectMake(0, 0, [[UIScreen mainScreen] bounds].size.width, 0);
    FlexFrameView* header = [[FlexFrameView alloc]initWithFlex:@"TableHeader" Frame:rcFrame Owner:self];
    header.flexibleHeight = YES;
    [header layoutIfNeeded];
    
    _table.tableHeaderView = header;

Hot preview

Hot preview for view controller

  • start http server in your local folder

    For mac with python2.7 installed:

    open Terminal and go to your folder, then input:

    python -m SimpleHTTPServer 8000

  • Set preview base url, call like this:

    FlexSetPreviewBaseUrl(@"http://192.168.6.104:8000/FlexLib/res/");

  • Run your project, you can press Cmd+R to reload the layout on simulator. Notice: this shortcut is available only on debug mode.

Notice: Cmd+R should be pressed on simulator when view controller is shown, not in XCode. The base url will be used to concate the resource url. For example, if the base url is 'http://ip:port/abc/' and you want to access flex resource 'TestVC', then your final url will be 'http://ip:port/abc/TestVC.xml'

hot preview for any UI

  • Start http server in your local folder as before

  • Set preview base url

  • Set resource load way FlexSetLoadFunc(YES) or FlexSetCustomLoadFunc(loadfunc)

Set preview parameter without modify your code everytime (Debug mode only)

  • Press Cmd+D when any view controller based on FlexBaseVC is shown
  • Set all parameters then save.
  • Call FlexRestorePreviewSetting when app init. This will restore all setting.

Usage For Swift Project

  • Adjust 'Podfile' to use frameworks

podfile

  • Extend your swift class from FlexBaseVC, FlexBaseTableCell, etc
  • For those variables, onPress events, class, you should declare them with @objc keyword. Like this:

@objc


Example

To run the example project, clone the repo, and open Example/FlexLib.xcworkspace with XCode to run.


Attribute Reference

FlexLib support two kinds of attribute: layout attribute and view attribute. Layout attribute conform with yoga implementation. View attribute can be extensible using FLEXSET macro.

Notice: FlexLib will output log when it doesn't recognize the attribute you provided. So you should not ignore the log when you develop your project.

layout attributes

view attributes


FlexLib Classes

You can get it on Wiki-FlexLib Classes


Installation

FlexLib is available through CocoaPods. To install it, simply add the following line to your Podfile:

pod 'FlexLib'

FAQ

You can get it on Wiki-FAQ


About Flexbox

CSS-flexbox

Yoga-flexbox


Author

zhenglibao, [email protected]. QQ Group: 687398178

You can contact me if you have any problem.

I hope you will like it. :)


License

FlexLib is available under the MIT license. See the LICENSE file for more info.


flexlib's People

Contributors

ifeegoo avatar zhenglibao avatar

Stargazers

 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.