我有一个视图,它将collectionView子类化为水平。每个单元格占据整个宽度和全高。在每个单元格中,我有一个按钮,我无法找到相对于我的viewController主视图的正确位置。
我尝试了以下和许多其他组合,但
guard let cell = collectionView.dequeueReusableCell(withReuseIdentifier: CellIds.studyCell, for: [0,1]) as? StudyCell else { return nil }
transition.originFrame = self.view.convert(cell.explanationButton.frame, to: self.view.superview)
transition.presenting = true
return transition
}