我正在使用以下代码生成背景
cell.backgroundView = [ [[UIImageView alloc] initWithImage:[ [UIImage imageNamed:@"list-item.png"] stretchableImageWithLeftCapWidth:0.0 topCapHeight:00.0] ]autorelease];
产生以下结果,其中textLabel似乎在文本周围有某种背景。有没有人有这个问题的经验?我确保将textlabel的backgroundview设置为nil,但它仍然无法正常工作。
http://cl.ly/image/3K1P1O473v05(由于代表无法直接发布图片)
答案 0 :(得分:0)
UILabel
没有backgroundView
属性。确保backgroundColor
设置为[UIColor clearColor]
。