我为我的 iOS 应用程序使用故事板。我还需要使用 [[NSBundle mainBundle] loadNibNamed:@"myxib" owner:self options:nil]; 加载 nib 文件的方法。
加载 nib 文件后, UICollectionViewCell* newCell = [collectionView dequeueReusableCellWithReuseIdentifier:@"recentItemsCell" forIndexPath:indexPath]; 开始给出运行时错误。我认为调用 loadNibNamed 方法会删除已注册的单元格(由情节提要注册的),因为当我删除 loadNibNamed 行时,我可以毫无问题地 dequeueCell 。
有没有办法通过不删除情节提要制作的原型单元注册来为视图控制器加载 nib 文件?
提前致谢