gpt4 book ai didi

swift - 如何将类存储在数组中

转载 作者:搜寻专家 更新时间:2023-11-01 06:43:21 25 4
gpt4 key购买 nike

我想检查一个对象是否属于某种类型。为此,我可以使用 is 检查单个类型。

if cell is UITableViewCell{
// do something
}

但是,我正在处理各种类型。所以,我想创建一个数组来存储类的类型。

let types = [ ATableViewCell, BTableViewCell, CTableViewCell]

然后遍历数组并检查

for type in types{
if cell is type{
// do something
}
}

问题是如何将类型的类型存储到数组中。 Swift 2 允许我这样做吗?

谢谢。

最佳答案

我找到了解决方案。这是关于 Swift Documentation 的解决方案.

let types = [ ATableViewCell.self, BTableViewCell.self, CTableViewCell.self]
for type in types{
if cell.dynamicType === type{
// do something
}
}

关于swift - 如何将类存储在数组中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33274392/

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