iphone - 在 UITableViewCell 中启用/禁用编辑模式
<p><p>我有一个自定义 UITableViewCell,上面有 1 个文本字段和一个标签。我只想在表格 View 处于编辑模式时启用文本字段编辑。</p>
<p>我正在使用以下方法来启用文本字段编辑模式和禁用文本字段编辑模式。但这不起作用。我不确定这是否是正确的方法。如果这不是正确的方法,您能告诉我如何禁用启用文本字段吗?</p>
<pre><code>- (NSIndexPath *)tableView:(UITableView *)tableView willSelectRowAtIndexPath:(NSIndexPath *)indexPath {
NSIndexPath *rowToSelect = indexPath;
EditingTableViewCell *detSelCell;
detSelCell = (EditingTableViewCell *);
detSelCell.textField.enabled = self.editing;
// Only allow selection if editing.
if (self.editing)
{
return indexPath;
}
else
{
return nil;
}
}
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
if (!self.editing)
{
return;
}
EditingTableViewCell *detcell;
detcell = (EditingTableViewCell *);
detcell.selectionStyle = style;
detcell.textField.enabled = self.editing;
</code></pre>
<p>我还有以下几行:</p>
<pre><code>self.tableView.allowsSelection = NO; // Keeps cells from being selectable while not editing. No more blue flash.
self.tableView.allowsSelectionDuringEditing = YES; // Allows cells to be selectable during edit mode.
</code></pre>
<p>请帮忙!</p></p>
<br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
<p><p>---我找到了答案:</p>
<p>我已从以下方法中删除了启用/禁用代码:</p>
<pre><code>- (NSIndexPath *)tableView:(UITableView *)tableView willSelectRowAtIndexPath:(NSIndexPath *)indexPath {
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
</code></pre>
<p>并在自定义 cell.m 中添加以下内容</p>
<pre><code>- (void)setEditing:(BOOL)editing animated:(BOOL)animated
{
;
;
;
;
;
if(editing){
textField.enabled = YES;
}else{
textField.enabled = NO;
}
;
}
</code></pre>
<p>它现在正在工作。我不确定这是否是正确的方法,但它工作正常。</p></p>
<p style="font-size: 20px;">关于iphone - 在 UITableViewCell 中启用/禁用编辑模式,我们在Stack Overflow上找到一个类似的问题:
<a href="https://stackoverflow.com/questions/9649986/" rel="noreferrer noopener nofollow" style="color: red;">
https://stackoverflow.com/questions/9649986/
</a>
</p>
页:
[1]