ios - 如何根据另一个值激活 uitableview 中的单元格?
<p><p>我有一个表格 View 。 3 个单元格中的每一个都调用一个选择器 View 。但我希望第三个单元格控制第四个单元格的外观。如果用户为单元格 3 选择值“1”,那么我希望单元格 #4 可供用户使用或激活以选择其他值。</p>
<p>这个可以吗?</p></p>
<br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
<p><p>你可以做这样的事情。当您在选择器中选择一行时</p>
<pre><code> - (void)pickerView:(UIPickerView *)pickerView didSelectRow:(NSInteger)row inComponent:(NSInteger)component
{
// Check proper condition and do accordingly
NSIndexPath *indexPath = ;
withRowAnimation:UITableViewRowAnimationBottom];
}
</code></pre>
<p>这只是一个你需要详细阐述的想法。</p>
<p><strong>编辑</strong><br/>
一个棘手的解决方案<br/>
您想使最后一个单元格变灰。在 <strong>numberOfRowsInSection</strong> </p> 中检查解决方案非常简单
<pre><code> - (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
if(showLastCell)
{
return 4;
}
return 3;
}
</code></pre>
<p>如果条件为假,这将使最后一个单元格变灰。 </p>
<p>When the picker selected make the condition true(<code>showLastCell = YES</code>) and reload the tableView</p>
<pre><code>
</code></pre></p>
<p style="font-size: 20px;">关于ios - 如何根据另一个值激活 uitableview 中的单元格?,我们在Stack Overflow上找到一个类似的问题:
<a href="https://stackoverflow.com/questions/16804793/" rel="noreferrer noopener nofollow" style="color: red;">
https://stackoverflow.com/questions/16804793/
</a>
</p>
页:
[1]