2016-05-02 39 views
1

複数のセルを持つテーブルビューコントローラの背後にイメージを追加しようとしていますが、すでにimageViewを使用していますが、細胞の上または下。あなたがのプロパティを変更する必要があるコードテーブルビューコントローラにイメージを追加する方法

var backGroundImage: UIImageView = UIImageView(image: UIImage(named: "backGroundImage.png")) 
self.tableView.backgroundView = backGroundImage 
+0

全体的なテーブルビューの背景に画像を追加しますか? –

+0

@Sherinはい私は黒い背景の代わりにコンテンツの後ろに画像を表示したいと思います。 – kevinabraham

+0

それは静的な細胞ですか? –

答えて

2

:私のファイル構造がどのように見える

enter image description here

Tableviewの背景色:背景のクリア

+0

ありがとうございました。また、tableViewsClassを変更しなければならなかったが、それは魅力のように働いた。 – kevinabraham

+0

あなたを助けてうれしい –

0
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! 
    } 
0

以下のUITableView使用に全体の背景画像を設定するには enter image description here

関連する問題