简体   繁体   中英

UICollectionViewCell content overlapping other cells

I'm trying to display a UITableView inside a UICollectionViewCell , that would be displayed over the other cells.

(The other cells don't have a table view)

Here's what I get so far :

在此处输入图片说明

Result : The UITableView is displayed behind the other cells.

I've set clipToBounds = NO to the content view of the cell, so that the table view gets displayed outside the cell content.

After looking at the View Hierarchy inspector, it seems that the cell containing the table view is lower than the other cells. I think it should be on the same level ?

Any help would be appreciated, thanks !

I found a solution that is working for now :

self.layer.zPosition = 1000;

(Inside UICollectionViewCell )

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM