- android - RelativeLayout 背景可绘制重叠内容
- android - 如何链接 cpufeatures lib 以获取 native android 库?
- java - OnItemClickListener 不起作用,但 OnLongItemClickListener 在自定义 ListView 中起作用
- java - Android 文件转字符串
我的单元格是这样设置的:
- (UITableViewCell *)tableView:(UITableView *)tableViewIn cellForRowAtIndexPath:(NSIndexPath *)indexPath {
static NSString *CellIdentifier = @"subcategory";
UITableViewCell *cell = [tableViewIn dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil) {
cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier] autorelease];
}
cell.textLabel.text = [[subcategories objectAtIndex:indexPath.row] title];
cell.textLabel.font = [UIFont boldSystemFontOfSize:16];
cell.textLabel.font = [UIFont boldSystemFontOfSize:16];
cell.accessoryType = UITableViewCellAccessoryDisclosureIndicator;
cell.selectionStyle = UITableViewCellSelectionStyleGray;
cell.contentView.backgroundColor = [UIColor clearColor];
cell.textLabel.textColor = [UIColor whiteColor];
cell.textLabel.highlightedTextColor = [UIColor whiteColor];
return cell;
}
如您所见,我设置了 contentView
的背景,效果很好 - 但是当我尝试对 backgroundView
或 做同样的事情时>accessoryView
,没有任何反应,因为backgroundView
和accessoryView
似乎都是nil。
当设置accessoryType
而不是accessoryView
时,如何设置配件的背景?
最佳答案
来自 UITableViewCell Class Reference :
背景 View
Discussion
The default is nil for cells in plain-style tables (UITableViewStylePlain) and non-nil for grouped-style tables UITableViewStyleGrouped). UITableViewCell adds the background view as a subview behind all other views and uses its current frame location.
附件 View
Discussion
If the value of this property is not nil, the UITableViewCell class uses the given view for the accessory view in the table view’s normal (default) state; it ignores the value of the accessoryType property. The provided accessory view can be a framework-provided control or label or a custom view. The accessory view appears in the the right side of the cell.
在您定义它们之前,这些 View 将为零,因此您可以根据需要设置它们的背景。
关于iphone - UITableViewCell accessoryType 已设置,但 accessoryView 为 nil。如何设置 accessoryView backgroundColor?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3714676/
我想使用 JavaScript 将 #Content.backgroundColor 更改为 elem.backgroundColor。 这里是 HTML 代码: Btn1 Btn2 Btn3 这是
@implementation AVSuperView - (AVSuperView*)initWithFrame:(CGRect)frame{ if (self = [super initW
这两行 Swift 代码在功能上有区别吗? self.button.layer.backgroundColor = UIColor.whiteColor().CGColor 和 self.button
我正在尝试学习 React.JS,但有些事情让我大吃一惊。 我有这个标题组件: class Header extends Component { render() { return ;
我正在尝试学习 React.JS,但有些事情让我大吃一惊。 我有这个标题组件: class Header extends Component { render() { return ;
我正在尝试为事件添加背景颜色,但没有运气。 $('#calendar').fullCalendar('renderEvent', { id: 1, title: 'hello', start: sel
这是在iOS 9中。我无法设置SKView的背景颜色,它始终以默认的灰色呈现。有没有解决的办法? let frame = CGRect(x: 0, y: 0, width: 200, height:
我正在创建一个 SWRevealView Controller ,每当我使用 self.view.backgroundColor 或实例化一个新的 View Controller 并使用 UIView
我正在尝试向使用 backgroundColor 的层添加高斯模糊。 下面的代码在标题文本周围添加了一个框并且工作正常,我只是想让白色变得模糊。 title.layer.borderColor = U
关闭。这个问题不符合Stack Overflow guidelines .它目前不接受答案。 关闭 4 年前。 这个问题是由于打字错误或无法再重现的问题引起的。虽然类似的问题可能是on-topic
为什么在 CSS 中通过 Javascript 更改样式时使用 background-color 不起作用? 这个有效: document.getElementById("circ").style.b
我有下面的 javascript 函数,当一个新文档被添加到列表时,它会闪烁链接的 bg 3 次。 这第一次工作正常,但随后对该函数的调用导致闪烁变得困惑。越叫越怪异的闪烁行为。 我在 IE8 和最新
如果我在属性检查器的图像/ ImageView 中设置图像,则以下后续调用不起作用: picture.backgroundColor = UIColor.greenColor() 如果我在代码中设置图
我正在尝试制作一个网站,但遇到了问题。当我在 Chrome 中运行它时,我得到:“无法设置未定义的属性‘backgroundColor’”。我不明白为什么我会得到这个。我的 var 不是数组(只是一个
我在我的应用程序中使用新的(在 iOS 7 中)UIPopoverController.backgroundColor 设置来根据需要更改弹出框的颜色,但我发现使用此设置会导致每当我打开我的popov
我有以下控制权。我想更改某些事件触发器的背景颜色。我想将此 clrGray 资源设为某些事件点击时的颜色。 我试过以下方法,但没有用:( XAM: CS: //On Some event /
我有以下控制权。我想更改某些事件触发器的背景颜色。我想将此 clrGray 资源设为某些事件点击时的颜色。 我试过以下方法,但没有用:( XAM: CS: //On Some event /
我正在构建一个排序算法可视化工具。这些项目中的每一项都是 div,backgroundColor 设置为白色。 当算法运行时,他将 backgroundColor 设置为橙色以显示哪些项目已更改。 但
我正在尝试更改 OSX 应用程序的标题栏颜色。使用 window!.backgroundColor = .... 有时有效,但其他则无效。或者更具体地说,它有时在运行应用程序时起作用,而不是在其他应用
这是我的问题: var mycss = window.getComputedStyle(myelement); 返回一个 CSSStyleDeclaration 对象: CSSStyleDeclara
我是一名优秀的程序员,十分优秀!