ios – NSLayoutAttribute中Top和TopMargin有什么区别?

ios – NSLayoutAttribute中Top和TopMargin有什么区别?,第1张

概述我试图通过代码创建约束: constraintImageCharacterTop = NSLayoutConstraint (item: image, attribute: NSLayoutAttribute.Top, relatedBy: NSLayoutRelation.Equal, toItem: self.view, attr 我试图通过代码创建约束:

constraintimageCharactertop = NSLayoutConstraint (item: image,attribute: NSLayoutAttribute.top,relatedBy: NSLayoutRelation.Equal,toItem: self.vIEw,multiplIEr: 1,constant: vIEwtop)    self.vIEw.addConstraint(constraintimageCharactertop)

但是,我不确定哪个是适合此约束的NSLayoutAttribute.图像应该有一个主要SupervIEw self.vIEw的顶部空间.

这是我认为它的工作方式,但我不确定我是否正确:

我应该为图像A使用NSLayoutAttribute.top或NSLayoutAttribute.topmargin吗?

解决方法 我通常不使用约束到边距,这是个人偏好,要么约束到视图的边缘,要么约束到它的边距(8px).假设您的图像A的顶部为8px,您可以创建一个常量为8的顶部约束,或者一个常量为0的上边距约束,您将获得相同的结果. 总结

以上是内存溢出为你收集整理的ios – NSLayoutAttribute中Top和TopMargin有什么区别?全部内容,希望文章能够帮你解决ios – NSLayoutAttribute中Top和TopMargin有什么区别?所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1072503.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-26
下一篇 2022-05-26

发表评论

登录后才能评论

评论列表(0条)

保存