reason: 'Could not load NIB in bundle: "XXXXXXX" with name 'xxCell'

来源:互联网 发布:大智慧大数据终端 编辑:程序博客网 时间:2024/06/10 14:42

错误信息:reason: 'Could not load NIB in bundle: 'NSBundle </Users/caitong/Library/Developer/CoreSimulator/Devices/5EC57F6E-CC41-4FD6-80D7-443B52B9D181/data/Containers/Bundle/Application/BB8E1CAE-441F-46FF-802A-EFC05088D841/ColleceService.app> (loaded)' with name 'collectViewCell''


查找原因:UICollectionView注册的是时候出错;

如下:

[self.collectionView registerNib:[UINib nibWithNibName:@"schoolViewCell" bundle:nil] forCellWithReuseIdentifier:identifer];

正确应该是cell类的名字,类名字写错了.


谨记:有些类名字很长,不要用手打出来,尽量复制.不要那么自信能拼对.少写或者多写都会导致出错,这是血的教训.


0 0