Some pitfalls of AutoLayout: AutoLayout

Source: Internet
Author: User

Some pitfalls of AutoLayout: AutoLayout

1. Add constraints to a UIView. If you want it to be displayed at the bottom of the UITableView, but it is not displayed, it will appear at the top of the UITableView.

Error code:

1 [self. tableView addSubview: self. adjustView]; 2 3 [self. adjustView mas_makeConstraints: ^ (MASConstraintMaker * make) {4 make. left. right. bottom. similar to (self. talbeview); 5 make. height. similar to (@ 126); 6 7}];

 

 

This may be caused by the scrolling of UITableView, which is consistent with that of UIScrollView.

Solution:

1 [self. view addSubview: self. adjustView]; 2 3 [self. adjustView mas_makeConstraints: ^ (MASConstraintMaker * make) {4 make. left. right. bottom. similar to (self. view); 5 make. height. similar to (@ 126); 6 7}];

It can be displayed at the bottom of self. view.

 

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.