码迷,mamicode.com
首页 > 其他好文 > 详细

autolayout的各种坑

时间:2015-06-13 18:27:13      阅读:136      评论:0      收藏:0      [点我收藏+]

标签:

[_xibView mas_updateConstraints:^(MASConstraintMaker *make) {

        make.top.offset(300);

        make.width.offset(100);

        make.height.offset(100);

    }];

 

1. autolayout做动画需要调用系统方法

[self.view layoutIfNeeded];

例如:

[UIView animateWithDuration:0.5 animations:^{
//            CGRect rect = _xibView.frame;
//            rect.origin.y = 300;
//            _xibView.frame = rect;
//            
            [_xibView mas_updateConstraints:^(MASConstraintMaker *make) {
                make.top.offset(300);
                make.width.offset(100);
                make.height.offset(100);
            }];
            [self.view layoutIfNeeded];
        } completion:^(BOOL finished) {
            
        }];

2. 没办法知道这个视图的真实尺寸

3. 难以修改或者这个视图的尺寸和位置约束

autolayout的各种坑

标签:

原文地址:http://www.cnblogs.com/apem/p/4573717.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!