我的表格认为,牢房很多。 每个牢房都有自己的UIText油田。 我在方案上增加了案文领域。 我想每个案文。 ed子被击中时,现场出现。 (现在的表格采用编辑方式),当再次施加压力时,我想所有文本领域都会消失(打破编辑模式)。 我知道,我可以使用<条码>隐藏的条码>财产实现这一点,但我尝试采用这种方法:
- (IBAction)editButton:(id)sender
{
if (self.editing)
{
[self setEditing:NO animated:YES];
[self.myTableView setEditing:NO animated:YES];
EditButton.title = @"Edit";
cellText.hidden = YES; //<-- THIS IS THE CODE
}
else
{
[self setEditing:YES animated:YES];
[self.myTableView setEditing:YES animated:YES];
EditButton.title = @"Done";
cellText.hidden = NO; //<-- THIS IS THE CODE
}
}
但它只显示并隐藏了VERY LAST小组的文字。 怎样才能将其带到哪里,然后又会展示EVERY手机的正文。 thanks!
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath: (NSIndexPath *)indexPath
{
static NSString *CellIdentifier = @"Cell";
cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil)
{
cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier];
cellText = [[UITextField alloc]init];
[cellText setFrame:CGRectMake(190, 15, 55, 30)];
cellText.text = @"1";
cellText.borderStyle = UITextBorderStyleRoundedRect;
cellText.hidden = YES;
cellText.userInteractionEnabled = NO;
[cell addSubview:cellText];
}
return cell;
}
提前感谢!