1
我有我上面的視圖控制器如何讓容器視圖背景透明而不僅僅是一切?
與此容器保持XIB容器視圖,並有照片在這個XIB
問題是照片是png,我想容器是透明的向我展示我的看法顏色
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
}
這個樣本如何填充容器
這使得照片alpha 0.5,但我想要的照片alpha = 1只我想容器背景是透明的 – MOMMH
它如何可以看到,因爲它的頂層圖像查看。 – Khuong
http://i.stack.imgur.com/OR29E.png這個形狀透明我想要它的藍色背景 – MOMMH