以编程方式将 NSLayoutAttributeLeading Space 设置为 Superview 并带有一些警告
Posted
技术标签:
【中文标题】以编程方式将 NSLayoutAttributeLeading Space 设置为 Superview 并带有一些警告【英文标题】:Setting the NSLayoutAttributeLeading Space to Superview programmatically with some warnings 【发布时间】:2015-04-17 08:56:17 【问题描述】:我将AdBannerView
带到我的应用程序底部,并且由于使用了共享横幅(而不是在Storyboard
中创建它),我以编程方式创建了它。我的应用程序在纵向和横向模式下工作,所以在我的viewWillAppear
中,我正在为AdBannerView
设置框架,我也第一次尝试以编程方式使用AutoLayout
,但我遇到了一些问题.
我在Storyboard
中创建了AdBannerView
作为测试,并设法在AdBannerView
上应用Leading Spaces to Superview
、Trailing Spaces to Superview
和Bottom Space to Superview
约束,所以当我旋转设备时,它会显示出来在横向和纵向的底部。
但是,当以编程方式执行 AutoLayout
时,我没有得到相同的结果。
这是我的代码:
[self.adBanner setFrame:CGRectMake(0, [[UIScreen mainScreen] bounds].size.height-100, 320, 50)];
[self.view addSubview:self.adBanner];
NSLayoutConstraint *myConstraint =[NSLayoutConstraint
constraintWithItem:self.adBanner
attribute:NSLayoutAttributeLeading
relatedBy:NSLayoutRelationEqual
toItem:self.view
attribute:NSLayoutAttributeTrailing
multiplier:1.0
constant:0];
[self.view addConstraint:myConstraint];
myConstraint =[NSLayoutConstraint constraintWithItem:self.adBanner
attribute:NSLayoutAttributeTrailing
relatedBy:NSLayoutRelationEqual
toItem:self.view
attribute:NSLayoutAttributeLeading
multiplier:1
constant:0];
[self.view addConstraint:myConstraint];
myConstraint =[NSLayoutConstraint constraintWithItem:self.adBanner
attribute:NSLayoutAttributeBottom
relatedBy:NSLayoutRelationEqual
toItem:self.view
attribute:NSLayoutAttributeBaseline
multiplier:1
constant:0];
[self.view addConstraint:myConstraint];
我在控制台中得到的是:
Unable to simultaneously satisfy constraints.
Probably at least one of the constraints in the following list is one you don't want. Try this: (1) look at each constraint and try to figure out which you don't expect; (2) find the code that added the unwanted constraint or constraints and fix it. (Note: If you're seeing NSAutoresizingMaskLayoutConstraints that you don't understand, refer to the documentation for the UIView property translatesAutoresizingMaskIntoConstraints)
(
"<NSLayoutConstraint:0x7fcb017020f0 ADBannerView:0x7fcb014c1860.bottom == UIView:0x7fcb014f9f70.lastBaseline>",
"<NSAutoresizingMaskLayoutConstraint:0x7fcb01624280 h=--& v=--& ADBannerView:0x7fcb014c1860.midY == + 957>",
"<NSAutoresizingMaskLayoutConstraint:0x7fcb016242f0 h=--& v=--& V:[ADBannerView:0x7fcb014c1860(66)]>",
"<NSLayoutConstraint:0x7fcb017039b0 'UIView-Encapsulated-Layout-Height' V:[UIView:0x7fcb014f9f70(768)]>",
"<NSAutoresizingMaskLayoutConstraint:0x7fcb014fa8a0 h=--& v=--& 'UIView-Encapsulated-Layout-Top' V:|-(0)-[UIView:0x7fcb014f9f70] (Names: '|':UIViewControllerWrapperView:0x7fcb01619da0 )>"
)
Will attempt to recover by breaking constraint
<NSLayoutConstraint:0x7fcb017020f0 ADBannerView:0x7fcb014c1860.bottom == UIView:0x7fcb014f9f70.lastBaseline>
Make a symbolic breakpoint at UIViewAlertForUnsatisfiableConstraints to catch this in the debugger.
The methods in the UIConstraintBasedLayoutDebugging category on UIView listed in <UIKit/UIView.h> may also be helpful.
设备旋转,但在横向模式下,AdBannerView
未显示,可能是因为它已移出屏幕。
我已经以编程方式学习了许多关于AutoLayout
的教程,老实说,我只是不明白。
问题:
有没有办法以编程方式将AdBannerView
固定到屏幕的左边缘(前导)、屏幕的右边缘(尾随)和屏幕底部(底部),这样当我旋转我的 iPhone/iPad,AdBannerView 在那里显示?
此应用兼容 ios 7 和 iOS 8。
【问题讨论】:
它显示你给了前导,尾随和底部空间......但我认为你还需要添加视图的高度来摆脱这个...... 【参考方案1】:首先,您需要致电[self.adBanner setTranslatesAutoresizingMasksIntoConstraints:NO]
其次,对于adBanner
视图,您仍然需要顶部偏移约束或高度约束。
另外,由于您使用的是自动布局,您不需要再设置框架,这将由布局系统自动完成。
如果您需要更多帮助,请告诉我 :)
您仍然需要高度限制。你可以使用类似的东西:
[self.view addConstraints:[NSLayoutConstraint constraintsWithVisualFormat:@"V:[view(==50)]" options:0 metrics:nil views:@ @"view": self.adBanner ]];
设置完所有约束后,您可以致电[self.view layoutIfNeeded]
。在方法调用之后打印出adBanner
的框架,用于调试目的,以确保一切都是您想要的。
【讨论】:
这是正确的。第一部分甚至在上面的控制台输出中:“如果您看到不理解的NSAutoresizingMaskLayoutConstraints
,请参阅UIView
属性translatesAutoresizingMaskIntoConstraints
的文档”。
在完成此答案中提到的所有操作后,您似乎仍在尝试将 super 的前沿连接到横幅的尾部,并将 super 的尾部连接到横幅的前部。我想从逻辑上讲,这应该水平翻转横幅,但这可能不是预期的效果(并且不会起作用)。反转上面前 2 个约束中 toItem 属性的前导和尾随属性
非常感谢您的回答并跟进回答。我真的很感激这一点!我已经完成了这项工作,但我想确定我正在做的事情实际上是正确的 - 所以我在 setFrame 之后将 setTranslatesAutoresizingMaskIntroConstraints 添加到 NO。如果我删除了 setFrame,横幅会出现在顶部,并且我将第一个约束保持为前导,第二个作为尾随,第三个作为底部,这样就可以了。我还需要添加高度/顶部约束吗?它似乎按照我想象的方式工作,旋转等。
不客气 :) 如果删除 setFrame 后它不能按您的意愿工作,那么是的,您仍然需要添加另一个约束。只需添加一个高度约束。我已经更新了我的答案。以上是关于以编程方式将 NSLayoutAttributeLeading Space 设置为 Superview 并带有一些警告的主要内容,如果未能解决你的问题,请参考以下文章
如何以编程方式将 Google Sheet 脚本发布/部署为 API 可执行文件?