我有两个类:CollectionCellViewController

第一类用于Collection View Cell(在其中放置了一个按钮)。在CollectionCell类中,我需要为此按钮连接插座:@IBOutlet weak var firstPercent: UIButton!

ViewController类中,我需要使用以下按钮的变量:firstPercent

我怎样才能做到这一点?谢谢你的帮助。

最佳答案

collectionViewDelegate

- (UICollectionViewCell *)collectionView:(UICollectionView *)collectionView cellForItemAtIndexPath:(NSIndexPath *)indexPath


现在声明您的自定义单元实例,然后

您可以在ViewController中使用CollectionCell.firstPercent addTarget并进行设置或
做你想做的。

08-26 03:57