gpt4 book ai didi

uitableview - 在 Custom UITableViewCell iOS 5 上将背景设置为透明不起作用,所有技巧均无效

转载 作者:行者123 更新时间:2023-12-02 02:18:50 25 4
gpt4 key购买 nike

所以,这个标题可能让我看起来很新,好像我还没有在这里寻找答案,所以首先,让我声明:我已经检查了关于将背景设置为透明以及选择自定义的答案(也不起作用)。

我的观点:我创​​建了一个自定义表格 View 单元格,将所有内容设置为透明,但没有任何内容是透明的。

所以我看这里,遍历所有 subview 、它们的 subview 和 cell.backgroundColor 并将其设置为透明。

我实现了 -(tableView*)willDisplayCell 方法并做了推荐的步骤,仍然不透明。

我弄乱了 setSelected: 回调方法,在执行推荐的同时将 subview 设置为透明。

现在我必须感谢 Apple 提供了白色背景。

所以我最终只是插入了一个具有相似颜色的 ImageView 。我不想使用那种方法。

我将类型设置为自定义表格 View 单元格(在 Xib 中,我在右侧主视图属性的下拉列表中选择了“自定义”)。

这是我的代码:[代码](抱歉关于格式化,StackOverflow 说 Tab 键可以完成...在浏览器中...)

 if (cell == nil) {

NSArray *topLevelObjects = [[NSBundle mainBundle] loadNibNamed:@"TheCustomTableViewCellTableViewCell" owner:self options:nil];

// Grab a pointer to the first object (presumably the custom cell, as that's all the XIB should contain).

cell = [topLevelObjects objectAtIndex:0];

// Load the top-level objects from the custom cell XIB.

TheCustomTableViewCell * customCell = (TheCustomTableViewCell*)cell;

customCell.titleTextLabel.text = item.title;

//This is Matt Gallagher 's answer modified but isn't working

cell.selectedBackgroundView = [[[UIView alloc] initWithFrame:CGRectMake(0, 0, 100, 100)] autorelease];

cell.selectedBackgroundView.backgroundColor = [UIColor redColor];

[/代码]

最后一点,我已经尝试在我的 Xib 中连接不同的 View 作为“背景 View ”并将它们设置为透明,以及创建我自己的 View ,我想知道是否有特定的方法我必须这样做才能实现它最终变得透明。

我觉得递归循环遍历每个 View 并不是最好的解决方案,而且可能行不通。

可能只是我需要重新启动计算机,但我已经清理了构建并重新启动了 XCode 4。

任何帮助将不胜感激...我在 Xcode 4 iOS 5 中,如果您尝试在另一个窗口中编辑它,通过从 Xib 编辑器中剥离所有编辑功能,使双显示器变得毫无意义!只是为了具体。另外,安装是全新的,我没有 iOS 4 模拟器,会尽快获取它,看看它是否是版本问题

最佳答案

- (void)viewDidLoad
{
[super viewDidLoad];
self.tableView.backgroundColor = [UIColor colorWithPatternImage:[UIImage imageNamed:@"Background.png"]];
...
}

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
cell.backgroundColor = [UIColor clearColor];
...
}

关于uitableview - 在 Custom UITableViewCell iOS 5 上将背景设置为透明不起作用,所有技巧均无效,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9247260/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com