Code X 軸中心對齊免都,相當于確定了 X 值绽诚,給定控件的寬度件甥,然后進行約束贼涩,相等
UIImageView *iconImg = [[UIImageView alloc] init];
iconImg.backgroundColor = [UIColor clearColor];
[iconImg setImage:[UIImage imageNamed:@"icon"]];
[self.view addSubview:iconImg];
[iconImg mas_makeConstraints:^(MASConstraintMaker *make) {
make.top.equalTo(weakSelf.view).offset(100);
make.width.equalTo(@70);
make.height.equalTo(iconImg.mas_width);
make.centerX.mas_equalTo(self.view.mas_centerX);
}];