2
我是新來的monotouch。我有一個UICollectionViewCell
.xib文件,我有圖像和標籤設置。在另一個視圖 - 控制它就像Monotouch UICollectionView給出空引用錯誤
public partial class TestViewController : UICollectionViewController {
public TestViewController (UICollectionViewLayout layout) :
base ("TestViewController", null)
{
CollectionView.RegisterNibForCell (UINib.FromName (
"imagesCollectionViewCell", NSBundle.MainBundle), imageCellId);
}
}
它給在CollectionView.RegisterNibForCell (UINib.FromName ("imagesCollectionViewCell", NSBundle.MainBundle), imageCellId);
空引用異常請讓我知道我做錯了什麼
如果我將RegisterNibForCell移動到ViewDidLoad並放置斷點,它永遠不會來ViewDidLoad – user3199271