我遇到了将UITableView的背景设置为UIImageView的问题(请参阅下面我为什么这样做),一旦设置了视图,它工作正常,并使用UITableView滚动,但它隐藏了元素表视图。
我需要有一个UIImageView作为UITableView的背景。我知道之前已经回答了,但答案是使用:
[UIColor colorWithPatternImage:[UIImage imageNamed:@"myImage.png"]];
或类似的东西(我需要使用):
UIImageView *background = [MainWindow generateBackgroundWithFrame:tableView.bounds];
[tableView addSubview:background];
[tableView sendSubviewToBack:background];
我需要使用后者的原因是因为我的generateBackgroundWithFrame方法获取了一个大图像,并在该图像周围绘制了指定尺寸的边框,并剪切了图像的其余部分:
+ (UIImageView *) generateBackgroundWithFrame: (CGRect)frame {
UIImageView *background = [[[UIImageView alloc] initWithFrame:frame] autorelease];
background.image = [UIImage imageNamed:@"globalBackground.png"];
[background.layer setMasksToBounds:YES];
[background.layer setCornerRadius:10.0];
[background.layer setBorderColor:[[UIColor grayColor] CGColor]];
[background.layer setBorderWidth:3.0];
return background;
}
请注意:我知道这可能会影响性能,但我没有足够的资源来为应用中的每个潜在屏幕制作这些图像。请不要以盲目的“你不应该这样做”的回答来回答这个问题。我知道这可能是错误的。
如何显示我的UITableView控件元素?在我的代表中,我做错了吗?这是一个简化版本:
- (UITableViewCell *)tableView:(UITableView *)tableView
cellForRowAtIndexPath:(NSIndexPath *)indexPath {
static NSString *CellIdentifier = @"Cell";
UITableViewCell *cell =
[tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil) {
cell = [[[UITableViewCell alloc]
initWithFrame:CGRectMake(20, 20, 261, 45)
reuseIdentifier:CellIdentifier] autorelease];
cell.accessoryType = UITableViewCellAccessoryDetailDisclosureButton;
UIImage *rowBackground;
NSString *imageName = @"standAloneTVButton.png";
rowBackground = [UIImage imageNamed:imageName];
UITextView *textView =
[[UITextView alloc] initWithFrame:CGRectMake(0, 5, 300, 200)];
textView.backgroundColor = [UIColor clearColor];
textView.textColor = [UIColor blackColor];
textView.font = [UIFont fontWithName:@"Helvetica" size:18.0f];
Purchase *purchase =
[[PurchaseModel productsPurchased] objectAtIndex:indexPath.row];
textView.text = [purchase Title];
selectedTextView.text = textView.text;
UIImageView *normalBackground =
[[[UIImageView alloc] init] autorelease];
normalBackground.image = rowBackground;
[normalBackground insertSubview:textView atIndex:0];
cell.backgroundView = normalBackground;
[textView release];
}
return cell;
}
答案 0 :(得分:2)
所以到目前为止这个问题的答案是在后台视图中添加一个标签,然后执行以下操作:
- (void)tableView: (UITableView *)tableView willDisplayCell: (UITableViewCell *)cell forRowAtIndexPath: (NSIndexPath *)path {
[tableView sendSubviewToBack:[tableView viewWithTag:BACKGROUNDVIEW_TAG]];
}
我真的不喜欢这个,因为我正在为每个细胞做这个,但我似乎无法找到allCellsDidLoadForTableView: (UITableView *)tableView
种方法。