2016-04-17 51 views
1

我有我上面的視圖控制器如何讓容器視圖背景透明而不僅僅是一切?

與此容器保持XIB容器視圖,並有照片在這個XIB

問題是照片是png,我想容器是透明的向我展示我的看法顏色

enter image description here

enter image description here

public func collectionView(collectionView: UICollectionView, cellForItemAtIndexPath indexPath: NSIndexPath) -> UICollectionViewCell { 

    let cell = collectionView.dequeueReusableCellWithReuseIdentifier("TNImageCell", forIndexPath: indexPath) as! TNImageSliderCollectionViewCell 
    cell.backgroundColor = UIColor.clearColor() 
    cell.imageView.image = images[indexPath.row] 
    cell.labelSliderName.text = sliderNames[indexPath.row] 
    return cell 

} 

這個樣本如何填充容器

回答

3

試試這個:tableView.backgroundColor = UIColor.clearColor()

let cell = collectionView.dequeueReusableCellWithReuseIdentifier("TNImageCell", forIndexPath: indexPath) as! TNImageSliderCollectionViewCell 
cell.backgroundColor = UIColor.clearColor() 
cell.imageView.image = images[indexPath.row] 
cell.imageView.alpha = 0.5 
cell.labelSliderName.text = sliderNames[indexPath.row] 
return cell 
+0

這使得照片alpha 0.5,但我想要的照片alpha = 1只我想容器背景是透明的 – MOMMH

+0

它如何可以看到,因爲它的頂層圖像查看。 – Khuong

+0

http://i.stack.imgur.com/OR29E.png這個形狀透明我想要它的藍色背景 – MOMMH

2

,則應該更換容器背景色不是alpha.Alpha值被應用到所有的子視圖以及的不透明度值。

相關問題