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 reloadData]并在您的tableView:numberOfRowsInSection:检查开关的属性中查看它是否已关闭。如果关闭,则返回 0。
[tableView reloadData]
tableView:numberOfRowsInSection: