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.
我已经在我的复选框中创建了复选框tableView并且工作正常,但是当我要转到上一个视图并返回到复选框视图时,我检查过的复选框不会保持选中状态。那么该怎么办?我使用两个图像来创建复选框。
tableView
提前致谢。
复选框的状态不存储在图像上。相反,它是通过一些模型/数据源显示的。
如果您有许多复选框,请将状态存储在数组中,并根据您的选中或取消选中更新数组值。
您可以将这个数组设置为 shared.global 或 static 到该类,以便它只初始化一个。在您的情况下,每次加载视图时都会初始化。