whf5566 / TPLayout

Harness the power of AutoLayout NSLayoutConstraints with a simplified, chainable and expressive syntax.
Other
18 stars 0 forks source link

self.topLayoutGuide self.view.safeAreaLayoutGuide #1

Open BetrayalPromise opened 6 years ago

BetrayalPromise commented 6 years ago

请问如何支持self.topLayoutGuide self.view.safeAreaLayoutGuide 两个约束

whf5566 commented 6 years ago

self.topLayoutGuide 和 self.view.safeAreaLayoutGuide 同view一样使用。如 view.al_top.equal(self.topLayoutGuide.al_top).offset(-10);

BetrayalPromise commented 6 years ago

多谢 我试一下