_skyfish 2013-10-15 00:07 采纳率: 57.1%
浏览 6700

iOS: UICollectionViewcell里面的图片不能加载

跟实例基本差不多,但每次都显示image对象为nil,请问大神哪里有问题?

//

// ViewController.m
// PhotoViewer
//
// Created by yonzhang on 13-10-13.
// Copyright (c) 2013年 yonzhang. All rights reserved.
//

#import "ViewController.h"
#import "ImageCell.h"

@interface ViewController ()
@property NSMutableArray *photoArray;

@end

@implementation ViewController

  • (void)viewDidLoad
    {
    [super viewDidLoad];
    // self.collectionView
    self.collectionview.delegate = self;
    self.collectionview.dataSource = self;
    [self.collectionview registerClass: [ImageCell class] forCellWithReuseIdentifier:@"Cell"];
    // self.collectionview.dataSource = self;
    // Do any additional setup after loading the view, typically from a nib.
    }

  • (void)didReceiveMemoryWarning
    {
    [super didReceiveMemoryWarning];
    // Dispose of any resources that can be recreated.
    }

#pragma Collection View Data Souce

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

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

-(UICollectionViewCell *) collectionView:(UICollectionView *)collectionView cellForItemAtIndexPath:(NSIndexPath *)indexPath
{
ImageCell *cell = [collectionView dequeueReusableCellWithReuseIdentifier:@"Cell" forIndexPath:indexPath];
// UIImage *testImage = [UIImage imageNamed:@"4.JPG"];
cell.image.image = [UIImage imageNamed:@"4.JPG"];
return cell;
}

#pragma custommethod

@end

  • 写回答

2条回答

  • __block小凡 2015-01-13 06:45
    关注

    你的cell.image应该是UIImageView吧 如果是UIImageView的话,先把你的名称改了,image太特殊了,容易与系统命名重名,这句demo我感觉你应该用SDWebimage cell.image = [[UIImageView alloc]initWithImage:[UIImage imageNamed:@"4.JPG"]];

    评论

报告相同问题?

悬赏问题

  • ¥15 #MATLAB仿真#车辆换道路径规划
  • ¥15 java 操作 elasticsearch 8.1 实现 索引的重建
  • ¥15 数据可视化Python
  • ¥15 要给毕业设计添加扫码登录的功能!!有偿
  • ¥15 kafka 分区副本增加会导致消息丢失或者不可用吗?
  • ¥15 微信公众号自制会员卡没有收款渠道啊
  • ¥15 stable diffusion
  • ¥100 Jenkins自动化部署—悬赏100元
  • ¥15 关于#python#的问题:求帮写python代码
  • ¥20 MATLAB画图图形出现上下震荡的线条