0

我正在尝试使用 UITableView 创建照片流(比如 Instagram)。我有应该可以工作的代码,但图像仍未显示。如果我只是创建一个不属于表格的 UIImageView,则会显示图像,但是当我尝试将其添加到表格时,它不会出现。表格出现了,只是没有图像。这是代码 -

正在创建表的视图控制器

#pragma mark - Table view data source

- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{
    //    NSInteger sections = self.objects.count;
    //    if (self.paginationEnabled && sections != 0)
    //        sections++;
    //    return sections;
    return 1;
}

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
    return 1;
}

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    static NSString *CellIdentifier = @"PhotoCell";
    PhotoCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
    cell.thumbImage = [UIImage imageNamed:self.thumbImage];

    if (cell==nil) {
        cell = [[PhotoCell alloc]initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:CellIdentifier];

    }
    // Configure the cell...

    return cell;
}

单元格视图控制器 -

- (id)initWithStyle:(UITableViewCellStyle)style reuseIdentifier:(NSString *)reuseIdentifier {
    self = [super initWithStyle:style reuseIdentifier:reuseIdentifier];
    if (self) {
        // Initialization code
        UIImageView *imageView = [[UIImageView alloc] initWithImage:self.thumbImage];

        imageView.frame = CGRectMake( 0.0f, 0.0f, 320.0f, 320.0f);
        imageView.backgroundColor = [UIColor blackColor];
        imageView.contentMode = UIViewContentModeScaleAspectFit;

        self.photoButton = [UIButton buttonWithType:UIButtonTypeCustom];
        self.photoButton.frame = CGRectMake( 0.0f, 0.0f, 320.0f, 320.0f);
        self.photoButton.backgroundColor = [UIColor clearColor];
        [self.contentView addSubview:self.photoButton];

        NSLog(@"Working");
        [self.contentView bringSubviewToFront:self.imageView];
    }
    return self; }

- (void)setSelected:(BOOL)selected animated:(BOOL)animated {
    [super setSelected:selected animated:animated];

    // Configure the view for the selected state }

#pragma mark - UIView

- (void)layoutSubviews {
    [super layoutSubviews];
    self.imageView.frame = CGRectMake( 20.0f, 0.0f, 280.0f, 280.0f);
    self.photoButton.frame = CGRectMake( 20.0f, 0.0f, 280.0f, 280.0f); }

@end

我正在使用这个将一个视图中捕获的图像发送到另一个视图 -

PhotoCell *photoCell = [[PhotoCell alloc] init];
    photoCell.thumbImage = self.thumbImage;
4

2 回答 2

0

您的代码的问题是您试图将图像设置为可能为零的对象。

即使dequeueReusableCellWithIdentifier:返回一个有效的单元格实例,您的代码也不会工作,因为您在方法中添加图像视图,initWithStyle:reuseIdentifier:如果单元格不为零,该方法将不会被调用。

我建议您执行以下操作

视图控制器

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:   (NSIndexPath *)indexPath
{
static NSString *CellIdentifier = @"PhotoCell";
PhotoCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];

if (cell==nil) {
    cell = [[PhotoCell alloc]initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:CellIdentifier];

}

[cell setImage:[UIImage imageNamed:self.thumbImage];

return cell;
}

细胞亚类

- (id)initWithStyle:(UITableViewCellStyle)style reuseIdentifier:(NSString *)reuseIdentifier {
self = [super initWithStyle:style reuseIdentifier:reuseIdentifier];
if (self) {
    // Maintain reference to the image view you create.
    self.imageView = [[UIImageView alloc] init];

    self.imageView.frame = CGRectMake( 0.0f, 0.0f, 320.0f, 320.0f);
    self.imageView.backgroundColor = [UIColor blackColor];
    self.imageView.contentMode = UIViewContentModeScaleAspectFit;

    self.photoButton = [UIButton buttonWithType:UIButtonTypeCustom];
    self.photoButton.frame = CGRectMake( 0.0f, 0.0f, 320.0f, 320.0f);
    self.photoButton.backgroundColor = [UIColor clearColor];
    [self.contentView addSubview:self.photoButton];

    NSLog(@"Working");
    [self.contentView bringSubviewToFront:self.imageView];
}
return self; }

-(void)setImage:(UIImage *)image
{
  [self.imageView setImage:image];
}

同样,如果您使用的是 xib/storyboard,我建议您在 xib/storyboard 中创建原型单元。这将是处理这种情况的更容易和优雅的方式。

于 2013-10-16T02:04:57.440 回答
0

除了上面讨论的内容之外,您应该为表格视图单元格或PhotoCell. 这可以很容易地用UIImageView+AFNetworking.

我看到您正在寻找建立 Instagram 照片流。看看STXDynamicTableView这是一个示例代码。您需要做的只是将异步图像加载到其中。

于 2014-04-28T09:21:53.697 回答