更改 uitablecell 中的标签文本

发布于 2024-11-08 18:45:19 字数 174 浏览 0 评论 0原文

我想实现一个表格单元格,其中有一个文本 = 0 的标签和两个带有文本“+”和“-”的按钮,

  • 当我单击 + 按钮时,我想将文本标签增加 1。
  • 当我单击 - 按钮时,我想将文本标签减一。

知道如何更改 uitablecell 的标签。

提前致谢。

I want to implement tablecell in which there is one label with text = 0 and two button with text '+' and '-'

  • when i click + button then i want to increment text label by one.
  • when i click - button then i want to decrement text label by one.

Any idea how to change the label of uitablecell.

Thanks in advance.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

不必在意 2024-11-15 18:45:19
- (UITableViewCell *) getCellContentView:(NSString *)cellIdentifier{
    UIButton * mp;
    UILabel *l1;  
    UITableViewCell *cell=[[[UITableViewCell alloc]initWithFrame: CGRectMake(0, 0, 300, 60) reuseIdentifier:nil] autorelease];  
    l1=[[UILabel alloc] initWithFrame:CGRectMake(100.0, 15.0, 400.0, 40.0)];  
    l1.tag=1;  
    l1.font=[UIFont fontWithName:@"AppleGothic" size:17];  
    l1.textColor=[UIColor blackColor];  
    l1.backgroundColor=[UIColor clearColor];  
    l1.numberOfLines=3;  
    [cell.contentView addSubview:l1];  
    [l1 release]; 

mp=[[UIButton alloc] initWithFrame:CGRectMake(250, 25, 50, 20)];
mp.tag=2;
mp.font=[UIFont boldSystemFontOfSize:14];
mp.textColor=[UIColor blueColor ];
[mp addTarget:self  action:@selector(mapbtnpressed:) forControlEvents:UIControlEventTouchUpInside];
[cell.contentView addSubview:mp];
[mp release] 
        return cell;  
}  

在 cellForRowAtIndexPath 方法中调用

cell=[self getCellContentView:CellIdentifier];  
labelname=(UILabel *)[cell viewWithTag:1];  

    [cell.contentView addSubview:labelname];  

click event  
+  
    labelname.text=[NSString stringWithFormat:@"%d",[lanename.text intvalue]+1];    
-event   
  labelname.text=[NSString stringWithFormat:@"%d",[lanename.text intvalue]-1];  
- (UITableViewCell *) getCellContentView:(NSString *)cellIdentifier{
    UIButton * mp;
    UILabel *l1;  
    UITableViewCell *cell=[[[UITableViewCell alloc]initWithFrame: CGRectMake(0, 0, 300, 60) reuseIdentifier:nil] autorelease];  
    l1=[[UILabel alloc] initWithFrame:CGRectMake(100.0, 15.0, 400.0, 40.0)];  
    l1.tag=1;  
    l1.font=[UIFont fontWithName:@"AppleGothic" size:17];  
    l1.textColor=[UIColor blackColor];  
    l1.backgroundColor=[UIColor clearColor];  
    l1.numberOfLines=3;  
    [cell.contentView addSubview:l1];  
    [l1 release]; 

mp=[[UIButton alloc] initWithFrame:CGRectMake(250, 25, 50, 20)];
mp.tag=2;
mp.font=[UIFont boldSystemFontOfSize:14];
mp.textColor=[UIColor blueColor ];
[mp addTarget:self  action:@selector(mapbtnpressed:) forControlEvents:UIControlEventTouchUpInside];
[cell.contentView addSubview:mp];
[mp release] 
        return cell;  
}  

in a cellForRowAtIndexPath method u call

cell=[self getCellContentView:CellIdentifier];  
labelname=(UILabel *)[cell viewWithTag:1];  

    [cell.contentView addSubview:labelname];  

click event  
+  
    labelname.text=[NSString stringWithFormat:@"%d",[lanename.text intvalue]+1];    
-event   
  labelname.text=[NSString stringWithFormat:@"%d",[lanename.text intvalue]-1];  
小镇女孩 2024-11-15 18:45:19

看看 本页文档。特别是清单 5-3。基本思想是所有自定义子视图都应添加到表格单元格的 contentView 中。

Look at this page of documentation. Especially, Listing 5-3. The basic idea is that all custom subviews should be added to contentView of your table cell.

泪意 2024-11-15 18:45:19

尝试使用 UILabelsetText: 方法

[urLabel setText:newText];

- (IBAction)plusButtonPressed
{
int value = [urLabel.text intValue];
value++;
[urLabel setText:[NSString stringWithFormat:@"%d",value]];
}

Try using setText: method of UILabel

[urLabel setText:newText];

- (IBAction)plusButtonPressed
{
int value = [urLabel.text intValue];
value++;
[urLabel setText:[NSString stringWithFormat:@"%d",value]];
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文