Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在选择时在 UITableView 单元格中添加带有图像的水平滚动视图。在选择单元格展开以显示滚动视图时。当我向上或向下滚动时,添加的滚动视图被清除。如何在滚动时保留表格视图?
问题可能是您通过dequeueReusableCellWithIdentifier重用单元格,如果是这种情况,请确保每次将单元格加载到内存时都不要添加滚动视图。此外,如果您添加一些最简洁的代码,这将有助于理解实际问题
设置dequeueReusableCellWithIdentifier为nil喜欢下面
dequeueReusableCellWithIdentifier
nil
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:nil];