在表格视图中水平滚动以及正常的垂直滚动
我有一个要求,在表格视图中列出板球运动员的姓名和统计数据,如下所示
姓名总计 4 的 6 的 1 的平均值
坦杜卡 231 O 6 5 3.6
甘古利 212 9 0 8 4.5
统计数据的总数大约是 8 到 10 ,因为我必须使统计数据水平滚动,冻结名称。谁能解释一下如何在 iPhone sdk 的表格视图中实现这一点。
我的问题是,是否可以在冻结单列的表格视图中水平滚动,请帮我举一个例子。
I have a requirement which lists the Cricket players in a table view with thier names and their stats like the following
Name total 4's 6's 1's average
Tendulkar 231 O 6 5 3.6
Gangully 212 9 0 8 4.5
the total number of stats is like 8 to 10 , for that I have to make the stats horizantally scrollable, freezing the name. Can anyone explain me how to acheive this in a table view for iPhone sdk.
My question is, is it possible to scroll horizontally in the tableview freezing a single column, Please help me with an example.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
从技术上来说这是可能的。您需要将
UIScrollView
设为UITableViewCell
中的子视图。将滚动视图配置为仅水平滚动。将数据放入其中&设置内容大小...不确定这对 tableView(垂直)滚动的性能影响。这取决于水平滚动中的数据......
Technically it's possible. You need to make
UIScrollView
a subview in yourUITableViewCell
. Configure the scrollview to scroll only horizontally. Put data in it & set the content size...Not sure about the performance implications of this on your tableView (vertical) scroll. This depends on the data in your horizontal scroll...