カスタム UINavigationBar (ルビー モーション構文) を実装したのと同じ方法で、UIAppearance を介して 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 に準拠しているため、これらのいずれかを使用することはできませんか?
ありがとう