在CollectionView中添加xib

时间:2015-03-20 10:03:47

标签: ios objective-c view xib

问题,下载并安装MWFeedParser,它运行正常,但这是一个问题,我不需要显示主要xib新闻列表,他需要显示我创建的菜单。但是当你尝试添加一个菜单,即创建一个新的xib时,我选择在mainintarface段中的设置(一般),选择你的新xib(MainNav)我收到错误

libc++abi.dylib: terminating with uncaught exception of type NSException

深入挖掘网络,我遇到this response,我明白问题是我没有在UICollectionView中添加新的xib?我porobyval删除UIKit.framework,然后出了不真实的错误。那么,实际上问题是如何在UICollectionView中添加我的新xib?

1 个答案:

答案 0 :(得分:0)

您需要将xib单元注册到视图控制器的 - (void)viewDidLoad上的UICollectionView。

    [self.collectionView registerNib:[UINib nibWithNibName:@"nibName" bundle:nil] 
              forCellReuseIdentifier:@"cellIdentifer"];

点击[此处](https://github.com/lequysang/TestCollectionViewWithXIB")