我有一个UICollectionView
的视图控制器。每个UICollectionViewCell
都有一个UILabel
和一个UIButton
。点击相应的UILabel
时,如何在UICollectionView
中打印每个UIButton
的文字。
答案 0 :(得分:0)
如果我理解正确,您可以继承UICollectionViewCell
,将UILabel
链接到相应的媒体资源,并为UIButton
触摸创建方法。以下是此方法的示例代码:
@interface MyCustomCollectionViewCell: UICollectionViewCell
@property (weak, nonatomic) IBOutlet UILabel *cellLabel;
- (void)cellButtonClicked:(id)sender;
@end
@implementation
- (void)cellButtonClicked:(id)sender {
NSLog(@"%@",_cellLabel.text);
}
@end
除此之外,您还可以浏览一些指南,例如this one