gpt4 book ai didi

ios - 应用程序崩溃,说集合表达式类型UIView *'可能不响应'countByEnumeratingWithState:object:count“'

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

我在tableView中有一个UIImageView,想在单击该行时以编程方式将其删除。

   -(void) tableView:(UITableView *) tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{

for (UIView *subview in tableView)
{
if([subview isKindOfClass:[UIImageView class]])
{
[subview removeFromSuperview];
}
}
}

当我单击表格行时,应用程序崩溃。 Warning : Collection expression type UIView* may not respond to countByEnumeratingWithState:object:count"对于应用程序崩溃,会发出相同的消息。我在这里错过了什么?我只粘贴了代码的相关部分。

最佳答案

代码应该像

for (UIView *subview in  tableView.subviews)

关于ios - 应用程序崩溃,说集合表达式类型UIView *'可能不响应'countByEnumeratingWithState:object:count“',我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22370274/

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