首页 > 移动平台 > 详细

iOS 使用LayoutGuide 来限制控件的位置,配合Auto Layout constraints

时间:2015-05-21 00:06:06      阅读:239      评论:0      收藏:0      [点我收藏+]

    UIButton *button = [UIButton buttonWithType:UIButtonTypeDetailDisclosure];

    [self.view addSubview:button];

    

    [button setTranslatesAutoresizingMaskIntoConstraints: NO];


    // 得到当前视图的最低基准限制,这个是对于Auto Layout constraint来说的。

    id bottomGuide = self.bottomLayoutGuide;

    NSDictionary *viewsDictionary = NSDictionaryOfVariableBindings (button, bottomGuide);

    [self.view addConstraints:[NSLayoutConstraint constraintsWithVisualFormat: @"V:[button]-20-[bottomGuide]"

                                                                      options: 0

                                                                      metrics: nil

                                                                        views: viewsDictionary]];

    

    [self.view layoutSubviews];


同理可以得到topLayoutGuide,这个是视图最高基准限制

iOS 使用LayoutGuide 来限制控件的位置,配合Auto Layout constraints

原文:http://blog.csdn.net/forwardto9/article/details/45876389

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!