如何在表格行中添加水平条,其宽度取决于传递的值
我正在实现投票应用程序,其中我需要在表行中显示水平条,其宽度取决于特定值。该水平条将充当显示投票百分比的指示器。
I am implementing vote application in which i need to show horizontal bar in table row whose width is depended on particular value. This horizontal bar will act as a indicator to show percentage of vote.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
一种解决方案可能是这样的......
使用两个
UILabels
......具有不同的颜色......这个标签的组合长度将是 100px,我们将根据不同的情况改变个人的长度百分比......谢谢,
One solution could be like this.....
Use two
UILabels
..... with different color..... combined length of this label would be 100px and we will vary individual's length based on the percentage......Thanks,
您可以在“单元格”中使用进度条。背景视图'。
或者您可以使用 imageView 并覆盖其绘制矩形方法来绘制投票百分比
You can use progress bar in the 'cell. backgroundView'.
or you can have imageView and overriding its draw rect method to draw the percentage of votes