UITableView 中如何拥有行跨度?
如何构建以下视图?
我想使用标准 UITableViewController
构建一个表单,但我需要一个跨越前两行的图像。行中有文本(未显示)。
我考虑过的一种方法是让图像和前两行实际上是一行,其中嵌入另一个 UITableView
,并禁用滚动。
但我真的很想做一些缩进的事情。
UITableView
+-----+---------------+
| | | <---+ Row 0
UIImageView +---> | +---------------+
| | | <---+ Row 1
+-----+---------------+
| | <---+ Row 2
+---------------------+
| |
+---------------------+
| |
+---------------------+
| |
+----------------
|
+-----------
|
+------
| Etc..
+--
|
如何使用最少的小部件/最少的代码(对于 iOS 4+)来实现这一目标?
How do I build the following view?
I want to build a form using a standard UITableViewController
, but I need to have an image that spans the first two rows. Rows have text in them (not pictured).
One way I've considered is to have the Image and first two rows actually be one row with another UITableView
embedded inside it, with scrolling disabled.
But I'd really like to do something with indenting.
UITableView
+-----+---------------+
| | | <---+ Row 0
UIImageView +---> | +---------------+
| | | <---+ Row 1
+-----+---------------+
| | <---+ Row 2
+---------------------+
| |
+---------------------+
| |
+---------------------+
| |
+----------------
|
+-----------
|
+------
| Etc..
+--
|
How can I accomplish this, using the fewest widgets / least amount of code (for iOS 4+)?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可能已经意识到这不是标准的,所以我认为您的三个选择是:
我倾向于使用选项#1,但如果图像会发生变化或动态,我可能会选择选项#2
You've probably realized this isn't standard, so I think your three options are:
I'd be inclined to use option #1, but if the images will change or be dynamic, I might go for option #2
我最终在第 0 行
UITableViewCell
内放置了一个UIImageView
和一个嵌套的UITableView
。嵌套的 UITableView 已禁用滚动,并提供一组两行。然后我只需要稍微修改一下框架。I ended up putting a
UIImageView
and a nestedUITableView
inside the row 0UITableViewCell
. The nestedUITableView
has scrolling disabled and provides one group with two rows. Then I just had to fudge the frame a bit.我认为最好的选择是为前 2 个单元格创建 UITableViewCell 子类。您应该能够将其布局为看起来像 1 个大单元格或跨行单元格,然后对所有剩余单元格使用默认值。
I think your best bet would be to subclass UITableViewCell for your first 2 cells. You should be able to lay it out to look like 1 big cell or your rowspanned cells, then just use the default for all the remaining cells.