gpt4 book ai didi

ios - swift :How can i remove the outlets from code?

转载 作者:行者123 更新时间:2023-12-01 19:49:19 25 4
gpt4 key购买 nike

我有一个观景高度导出。它设置为 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/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com