作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个观景高度导出。它设置为 55。在 tableview 中我使用过它。有些地方我需要静态高度,有些地方不需要高度。所以我想从我的代码中删除这个静态高度。我怎样才能做到这一点?这可能吗?
func tableView(tableView: UITableView, willDisplayCell cell: UITableViewCell, forRowAtIndexPath indexPath: NSIndexPath) {
if(heightIsStatic.count> 0)
{
//here i require a static height and is working fine as height can
//be printed as 55
}
else
{
self.ViewHeight.active = false
print(self.ViewHeight.constant)
}
}
最佳答案
如果您想要 else 部分的动态大小,那么您必须删除约束导出,然后在您的代码中您必须找到约束,然后将其更改为常量或在需要时删除
for constraint in view.constraints {
if(constraint.firstAttribute == NSLayoutAttribute.height)
{
constraint.constant = 55
}
}
关于ios - swift :How can i remove the outlets from code?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46578399/
我是一名优秀的程序员,十分优秀!