自动布局第三方masory如何使用topLayoutGuide?如题
光阴似箭催人老,日月如移越少年。
topLayoutGuide 和 bottomLayoutGuide These are attributes added to UIViewController after iOS 7.
topLayoutGuide
bottomLayoutGuide
topLayoutGuide usually represents the upper part of the current page blocked by StatusBar and NavigationBar. This can be used in Masonry’s API:
[myView mas_makeConstraints:^(MASConstraintMaker *make) { // 把 myView 的 top 和 self(UIViewController) 的 topLayoutGuide 的那部分界面的 top 对齐。 make.top.equalTo(self.mas_topLayoutGuide); // ... }];
topLayoutGuide
和bottomLayoutGuide
These are attributes added to UIViewController after iOS 7.topLayoutGuide usually represents the upper part of the current page blocked by StatusBar and NavigationBar. This can be used in Masonry’s API: