【问题标题】:iCarousel repeating ImagesiCarousel 重复图像
【发布时间】:2013-09-30 16:34:54
【问题描述】:

我在我的应用程序中使用了令人惊叹的 iCarousel 库。但我面临一个问题。我正在使用此代码将数据填充到轮播中。

- (NSUInteger)numberOfItemsInCarousel:(iCarousel *)carousel
{
   //return the total number of items in the carousel
   return [items count];
}

- (UIView *)carousel:(iCarousel *)carousel viewForItemAtIndex:(NSUInteger)index reusingView:(UIView *)view
{
    UILabel *label = nil;
UIImageView *imageView = nil;

    //create new view if no view is available for recycling
if (view == nil)
{
    view = [[UIImageView alloc] initWithFrame:CGRectMake(0, 0, [[UIScreen mainScreen] bounds].size.width - 60, [[UIScreen mainScreen] bounds].size.height -150)];
    view.contentMode = UIViewContentModeCenter;
    CGFloat width = [[UIScreen mainScreen] bounds].size.width;
    CGRect webFrame = CGRectMake(0.0, 0.0, width - 60, width - 60);
    imageView = [[ UIImageView alloc ] initWithFrame:webFrame];
    [view addSubview:imageView];
    label = [[UILabel alloc] initWithFrame:CGRectMake(0.0, 240.0, width -60, 260.0)];
    label.backgroundColor = [UIColor clearColor];
    label.textAlignment = NSTextAlignmentCenter;
    label.font = [label.font fontWithSize:22];
    label.numberOfLines = 5;
    label.lineBreakMode = NSLineBreakByWordWrapping;
    label.tag = 1;
    [view addSubview:label];
}
else
{
    //get a reference to the label in the recycled view
    label = (UILabel *)[view viewWithTag:1];
}

NSString *imageName = [NSString stringWithFormat:@"%@.pdf",[[items objectAtIndex:index] objectAtIndex:0]];
NSLog(@"Image File Name: %@", imageName);
NSLog(@"Image Explanation: %@", [[items objectAtIndex:index] objectAtIndex:1]);
[imageView setImage:[ UIImage imageWithPDFNamed:imageName atSize:CGSizeMake( 150, 130 ) ]];
label.text = [[items objectAtIndex:index] objectAtIndex:1];

return view;
}

numberOfItemsInCarousel 返回 38 但轮播仅显示 6 张图像,然后循环重复它们。标签文本根据数组索引正确显示。 我该如何解决?

【问题讨论】:

  • 您好,我也遇到了同样的问题,您找到解决方案了吗?

标签: iphone ios objective-c xcode5 icarousel


【解决方案1】:

您没有从重复使用的视图中获得imageView,请阅读该行

[imageView setImage:[ UIImage imageWithPDFNamed:imageName atSize:CGSizeMake( 150, 130 ) ]];

作为

[nil setImage:[ UIImage imageWithPDFNamed:imageName atSize:CGSizeMake( 150, 130 ) ]];

view != nil。获取imageView 的方式与获取label 的方式相同。

【讨论】:

    猜你喜欢
    • 2023-03-28
    • 1970-01-01
    • 1970-01-01
    • 2017-07-02
    • 1970-01-01
    • 2018-01-18
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    相关资源
    最近更新 更多