ios - masory中如何使用viewController的topLayoutGuide?
大家讲道理
大家讲道理 2017-04-17 17:32:47
0
1
695

自动布局第三方masory如何使用topLayoutGuide?如题

大家讲道理
大家讲道理

光阴似箭催人老,日月如移越少年。

Antworte allen(1)
阿神

topLayoutGuidebottomLayoutGuide 都是 iOS 7 后 UIViewController 增加的属性。

topLayoutGuide 通常表示当前页面的上方被 StatusBar 和 NavigationBar 遮挡的部分。在 Masonry 的 API 中可以这样用:

[myView mas_makeConstraints:^(MASConstraintMaker *make) {
    // 把 myView 的 top 和 self(UIViewController) 的 topLayoutGuide 的那部分界面的 top 对齐。
    make.top.equalTo(self.mas_topLayoutGuide);
    // ...
}];
Beliebte Tutorials
Mehr>
Neueste Downloads
Mehr>
Web-Effekte
Quellcode der Website
Website-Materialien
Frontend-Vorlage