姜坤
姜坤
func performMenuControllerAction(action: Selector) //You can handle standard actions here, but custom actions never trigger this.Is there an easier way to handle custom menu actions?
Temporary solution: BaseMessageCollectionViewCell.swift: func popMenuPerformAction(selector:String) { var v = self.superview while v != nil { if let collectionView = v as? UICollectionView { if let indexPath = collectionView.indexPathForCell(self) { collectionView.delegate?.collectionView!(collectionView,...