_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"]];

    评论

报告相同问题?

悬赏问题

  • ¥20 双层网络上信息-疾病传播
  • ¥50 paddlepaddle pinn
  • ¥20 idea运行测试代码报错问题
  • ¥15 网络监控:网络故障告警通知
  • ¥15 django项目运行报编码错误
  • ¥15 请问这个是什么意思?
  • ¥15 STM32驱动继电器
  • ¥15 Windows server update services
  • ¥15 关于#c语言#的问题:我现在在做一个墨水屏设计,2.9英寸的小屏怎么换4.2英寸大屏
  • ¥15 模糊pid与pid仿真结果几乎一样