override func viewDidLoad()
{
let img:UIImageView=UIImageView(frame: PostTable.frame)
img.image=UIImage(named: "hi.png")
PostTable.backgroundView=img
}
func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell
{
let cell:UITableViewCell! = tableView.dequeueReusableCellWithIdentifier("cell")
let selectView=UIView()
selectView.backgroundColor=UIColor.clearColor()
cell.selectedBackgroundView=selectView
cell.backgroundColor=UIColor.clearColor()
cell.contentView.backgroundColor=UIColor.clearColor()
return cell!
}
全体的なテーブルビューの背景に画像を追加しますか? –
@Sherinはい私は黒い背景の代わりにコンテンツの後ろに画像を表示したいと思います。 – kevinabraham
それは静的な細胞ですか? –