JHFrameLayout 2.5.7

JHFrameLayout 2.5.7

Haocold 维护。



  • Haocold

JHFrameLayout

一个轻量级的自动布局框架。


版本

最新发布版本


Cocoapods

pod 'JHFrameLayout'


比较布局时间

Frame vs JHFrameLayout vs MyFlowLayout

image


用法

- (void)loadView{

    self.view = [[JHFrameLayoutView alloc] initWithFrame:[UIScreen mainScreen].bounds];

    UIView *view1 = [[UIView alloc] init];
    view1.backgroundColor = [UIColor grayColor];
    [self.view addSubview:view1];
    
    view1.jhLayout
    .topOffsetBottomOfView(10, self.navigationController.navigationBar, NO)
    .leftIs(10)
    .bottomOffsetMiddleOfView(-50, self.view, YES)
    .rightOffsetMiddleOfView(-5, self.view, YES);
}


日志

变更日志


更多示例详情 :)