iOS 9的ReadContentGuide是一个UILayoutGuide(基本上,你可以限制的东西),所有UIViews都有.我们的想法是保持文字的子视图在iPad上的格局太宽.
在代码中配置它很容易(v1是子视图,v是超级视图):
NSLayoutConstraint.activateConstraints([ v1.topAnchor.constraintEqualToAnchor(v.readableContentGuide.topAnchor),v1.bottomAnchor.constraintEqualToAnchor(v.readableContentGuide.bottomAnchor),v1.rightAnchor.constraintEqualToAnchor(v.readableContentGuide.rightAnchor),v1.leftAnchor.constraintEqualToAnchor(v.readableContentGuide.leftAnchor) ])
接着.到现在为止还挺好.但是……在两个不同的WWDC视频中,非常明确地声明您可以将子视图固定到其界面生成器中的superview的readableContentGuide.
但他们没有解释你是如何做到的.
所以我的问题是:你是怎么做到的?