_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 关于#java#的问题,请各位专家解答!
  • ¥15 急matlab编程仿真二阶震荡系统
  • ¥20 TEC-9的数据通路实验
  • ¥15 ue5 .3之前好好的现在只要是激活关卡就会崩溃
  • ¥50 MATLAB实现圆柱体容器内球形颗粒堆积
  • ¥15 python如何将动态的多个子列表,拼接后进行集合的交集
  • ¥20 vitis-ai量化基于pytorch框架下的yolov5模型
  • ¥15 如何实现H5在QQ平台上的二次分享卡片效果?
  • ¥30 求解达问题(有红包)
  • ¥15 请解包一个pak文件