swiftUITableViewCell移除所有子视图
在Swift中,你可以使用以下代码来移除UITableViewCell中的所有子视图:
for subview in cell.contentView.subviews {
subview.removeFromSuperview()
}
这段代码会循环遍历UITableViewCell的contentView中的所有子视图,并调用removeFromSuperview方法将其从父视图中移除。
原文地址: https://www.cveoy.top/t/topic/iIiw 著作权归作者所有。请勿转载和采集!