更改 uitablecell 中的标签文本
我想实现一个表格单元格,其中有一个文本 = 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
在 cellForRowAtIndexPath 方法中调用
in a cellForRowAtIndexPath method u call
看看 本页文档。特别是清单 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.尝试使用
UILabel
的setText:
方法Try using
setText:
method ofUILabel