程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程綜合問答 >> cocoa touch-ios添加UICollectionView報錯

cocoa touch-ios添加UICollectionView報錯

編輯:編程綜合問答
ios添加UICollectionView報錯

我添加了UICollectionView到view中。然後報錯了。

錯誤:

"NSInvalidArgumentException', reason: '-[NSIndexPath reuseIdentifier]: unrecognized selector sent to instance"

方法:

-(NSInteger)collectionView:(UICollectionView *)collectionView numberOfItemsInSection:(NSInteger)section
{
    return 1;
}

-(UICollectionViewCell *)collectionView:(UICollectionView *)collectionView cellForItemAtIndexPath:(NSIndexPath *)indexPath
{
    static NSString *identifier = @"CellID";
    UICollectionViewCell *cell = [collectionView dequeueReusableCellWithReuseIdentifier:identifier forIndexPath:indexPath];

    UIImageView *imageView = (UIImageView *)[cell viewWithTag:10];
    imageView.image = [UIImage imageNamed:@"V.jpg"];
}

-(NSInteger)numberOfSectionsInCollectionView:(UICollectionView *)collectionView
{
    return 1;
}

最佳回答:


你如果是代碼創建的話 要注冊cell kcellID是你的identifier
[collectionView registerClass:[Cell class] forCellWithReuseIdentifier:kCellID];

如果是storyboard創建的話

在storyboard中選中cell 把 view cell中有個identifier改成你的identifier
你試試看

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved