uitableview 部分中的特定 uitableviewcell
我的 uitableview 的每个索引都有这个代码
if (indexPath.row == 6){
UIImageView *blog = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"blog.png"]];
[cell setBackgroundView:blog];
UIImageView *selectedblog = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"blogSel.png"]];
cell.selectedBackgroundView=selectedblog;
cell.backgroundColor = [UIColor clearColor];
[[cell textLabel] setTextColor:[UIColor whiteColor]];
return cell;}
,并且有两个部分,每个部分有 5 行。如何将 indexPath.row 1 到 5 放在第 1 部分中,将 indexPath.row 6 到 10 放在第 2 部分中?
I have this code for each index of my uitableview
if (indexPath.row == 6){
UIImageView *blog = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"blog.png"]];
[cell setBackgroundView:blog];
UIImageView *selectedblog = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"blogSel.png"]];
cell.selectedBackgroundView=selectedblog;
cell.backgroundColor = [UIColor clearColor];
[[cell textLabel] setTextColor:[UIColor whiteColor]];
return cell;}
and I have two sections, with 5 rows in each section. How can I put indexPath.row 1 thru 5 in section 1 and indexPath.row 6 thru 10 in section 2?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
现在,您的表格视图将需要 2 个部分,每个部分有 5 行,并尝试绘制它们。然后,在
cellForRowAtIndexPath:
中,上述带有
actualIndex
的逻辑导致:如果您有支持表格单元格的项目的基础数组(或其他平面容器类),这将允许您可以使用这些项目填写表格视图中的多个部分。
Now your table view will expect 2 sections with 5 rows each, and try to draw them. Then, in
cellForRowAtIndexPath:
The above logic with
actualIndex
leads to:If you have an underlying array (or other flat container class) of items backing your table cells, this will allow you to fill out multiple sections in the table view using those items.