我想创建一个单元格对象的副本。以下是我的代码,但正在检索copyWithZone:]:无法识别的选择器已发送到实例

  CollectionCell *cell = [cv dequeueReusableCellWithReuseIdentifier:@"KCell" forIndexPath:indexPath];

        if(kCell == nil)
        {


            cell = [self getiPadCell:indexPath cv:cv dict:dict];
            kCell = cell;
            return cell;
        }
        else
        {
            cell = [kCell copy];
            return cell;
        }

最佳答案

您的CollectionCell类应提供copyWithZone:方法的实现。而且它应该符合NSCopying协议(protocol)。考虑一下您想如何复制单元并提供适当的实现。 This Link可以帮助您更好地理解它

关于ios-copyWithZone :]: unrecognized selector sent to instance,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/23262607/

10-11 11:02