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.
我有一个带有一个原型单元格的表格视图。例如,如果我为此添加标签,则它在应用程序运行时可见。如果我随后将此表视图嵌入到容器视图中,则单元格仍然可见,但标签会消失。这是一个已知的错误?
当您将它添加到容器视图时,您可能会再次收到对 tableCell 的请求,这可能就是您的问题所在。将日志消息添加到您的 dataSource 委托和委托方法,并查看表在做什么。
我一直在移动视图,在容器视图中有 tableViews,一切正常。还要确保在 tableView 移动时对它有一个强引用,这样它就不会被 dalloced 然后重新创建。使用日志消息,您应该能够对其进行分类。