自动布局第三方masory如何使用topLayoutGuide?如题
光阴似箭催人老,日月如移越少年。
topLayoutGuide 和 bottomLayoutGuide 都是 iOS 7 後 UIViewController 增加的屬性。
topLayoutGuide
bottomLayoutGuide
topLayoutGuide 通常表示目前頁面的上方被 StatusBar 和 NavigationBar 遮蔽的部分。在 Masonry 的 API 中可以這樣用:
[myView mas_makeConstraints:^(MASConstraintMaker *make) { // 把 myView 的 top 和 self(UIViewController) 的 topLayoutGuide 的那部分界面的 top 对齐。 make.top.equalTo(self.mas_topLayoutGuide); // ... }];
topLayoutGuide
和bottomLayoutGuide
都是 iOS 7 後 UIViewController 增加的屬性。topLayoutGuide 通常表示目前頁面的上方被 StatusBar 和 NavigationBar 遮蔽的部分。在 Masonry 的 API 中可以這樣用: