gpt4 book ai didi

ios - 观察自定义单元格

转载 作者:行者123 更新时间:2023-11-28 20:24:11 25 4
gpt4 key购买 nike

我正在尝试添加观察者 (KVO) 来观察我的自定义单元格。选择单元格后,我应该会收到事件通知。我的代码:

[colMain addObserver:self forKeyPath:@"colMain" options:0 context:NULL];

}

-(void)observeValueForKeyPath:(NSString *)keyPath ofObject:(id)object change:(NSDictionary *)change context:(void *)context
{

if (keyPath == @"colMain") {
NSLog(@"cell Selected");
[self performSelector:@selector(deleteCell) withObject:nil];

}
}

colMain 代表 collectionView。我不太确定该怎么做,因为我没有将 customCell 作为属性,否则它不会编译。有什么想法吗?

最佳答案

为什么不直接在您的 Collection View 上设置一个委托(delegate),然后实现这两种方法中的一种?

[– collectionView:shouldSelectItemAtIndexPath:]

[– collectionView:didSelectItemAtIndexPath:]

关于ios - 观察自定义单元格,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14679066/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com