我有两个类:CollectionCell
和ViewController
。
第一类用于Collection View Cell(在其中放置了一个按钮)。在CollectionCell
类中,我需要为此按钮连接插座:@IBOutlet weak var firstPercent: UIButton!
。
在ViewController
类中,我需要使用以下按钮的变量:firstPercent
。
我怎样才能做到这一点?谢谢你的帮助。
最佳答案
在collectionViewDelegate
中
- (UICollectionViewCell *)collectionView:(UICollectionView *)collectionView cellForItemAtIndexPath:(NSIndexPath *)indexPath
现在声明您的自定义单元实例,然后
您可以在ViewController中使用
CollectionCell.firstPercent
addTarget并进行设置或做你想做的。