我正在尝试通过 UIAppearance 以与实现自定义 UINavigationBar (ruby 运动语法)相同的方式对 UITableViewCell 进行自定义:
bg = UIImage.imageNamed("cell_bg.png").resizableImageWithCapInsets(UIEdgeInsetsMake(0,13,0,13))
UITableViewCell.appearance.setBackgroundImage(bg, forState:UIControlStateNormal, barMetrics:UIBarMetricsDefault)
但是 setBackgroundImage 没有定义, setBackgroundView 也没有 setBackgroundViewImage ... UITableViewCell 符合 UIAppearanceContainer ,所以我不应该能够使用其中之一吗?
谢谢