search

Home  >  Q&A  >  body text

ios - masory中如何使用viewController的topLayoutGuide?

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

大家讲道理大家讲道理2836 days ago736

reply all(1)I'll reply

  • 阿神

    阿神2017-04-17 17:34:47

    topLayoutGuidebottomLayoutGuide 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:

    [myView mas_makeConstraints:^(MASConstraintMaker *make) {
        // 把 myView 的 top 和 self(UIViewController) 的 topLayoutGuide 的那部分界面的 top 对齐。
        make.top.equalTo(self.mas_topLayoutGuide);
        // ...
    }];

    reply
    0
  • Cancelreply