1

我正在开发一个应用程序,我需要使用 Xcode 4.5.2 在视图中加载许多图像

所以,在顶部,我有一个UIView,在这个里面UIView,我必须UIScrollView显示许多图像,我UIScrollView在 pagingEnabled 模式下使用它。由于我有许多图像要加载,我知道不可能一次加载。因此,我决定根据需要添加或删除。

当应用程序启动时,我已经加载了三个图像UIScrollView,当用户传递到图像 2 时,我想从中删除图像 0。UIScrollView当我尝试删除图像 0 时,我得到了完全白屏。有趣的是,如果我不要尝试删除图像 0,当用户传递到图像 3 时,我想将新图像(图像 4)加载到UIScrollView,并删除图像 1。到目前为止,我能够做到这一点。基本上,我的应用程序工作得很好,但是当我想删除第一个(在索引 0 处)图像时,屏幕上出现了完全白屏。

你知道我为什么会出现这种行为吗?我既没有收到警告,也没有收到错误。我怎么可能删除所有其他图像但不能删除图像 0 ?

谢谢你。

     -(void)scrollViewDidScroll:(UIScrollView *)scrollView
{ 
static NSInteger currentPage = 0 ;
CGFloat pageWidth = self.scrollView.frame.size.width ;
float fractionalPage = self.scrollView.contentOffset.x / pageWidth ;
NSLog(@"%f",fractionalPage);
if(fractionalPage == currentPage+1)
{
    NSLog(@"Swipe Left");
    currentPage++;
    NSLog(@"Current page :%d",currentPage);

    [self setLayoutImages:kLeft] ;
}
else if(fractionalPage+1 ==currentPage)
{
    NSLog(@"Swipe Right");
    currentPage--;
    NSLog(@"Current page :%d",currentPage);
    [self setLayoutImages:kRight];
}

}

-(void)setLayoutImages:(Direction )direction
{
int currentPage = self.scrollView.contentOffset.x / scrollViewWidth ;
if(direction == kLeft)
{
    self.scrollView.contentSize = CGSizeMake(((currentPage+2) * scrollViewWidth), 350.0f);
    if(![self.scrollView viewWithTag:currentPage+1])
    {
        NSString *imageName = @"iPhone.png" ;
        UIImage *image = [UIImage imageNamed:imageName];
        UIImageView *imageView = [[UIImageView alloc]initWithImage:image ] ;
        imageView.tag  = currentPage+1 ;
        CGRect frame = imageView.frame ;
        frame.size.height = imageHeight;
        frame.size.width = scrollViewWidth ;
        frame.origin.x = (currentPage+1) * scrollViewWidth ;
        frame.origin.y = 0 ;
        imageView.frame = frame ;
        if (currentPage>2) { //To be able to remove the first image,i need to add equal here,but i got white screen.
            [[self.scrollView viewWithTag:(currentPage -2)]removeFromSuperview ] ;            }
        [self.scrollView addSubview:imageView ] ;
    }
}
else if(direction == kRight)
{
    if(![self.scrollView viewWithTag:currentPage-1] && currentPage >0)
    {
        NSString *imageName = @"gs.jpeg";
        UIImage *image = [UIImage imageNamed:imageName];
        UIImageView *imageView = [[UIImageView alloc]initWithImage:image ];
        imageView.tag = currentPage-1 ;
        CGRect frame = imageView.frame ;
        frame.size.height = imageHeight ;
        frame.size.width = scrollViewWidth ;
        frame.origin.x = (currentPage-1)*scrollViewWidth ;
        frame.origin.y = 0 ;
        imageView.frame = frame ;
        [[self.scrollView viewWithTag:currentPage+2]removeFromSuperview ] ;
        [self.scrollView addSubview:imageView ];
    }
}

}

4

2 回答 2

0

你可以给三个 deferant 中的每一个并重Tag用它,[[view viewWithtag:tag] removeFromSuperView]或者你可以尝试一个名为iCarousel的现成项目,nicklockwood这是一个很棒的项目。

它可以是horizontal 并且vertical

在此处输入图像描述

于 2012-12-10T22:13:39.710 回答
0

尝试让您的视图以 1 而不是 0 的标记开始,因为如果我没记错的话,0 是未标记视图的默认值,这可能会导致问题

于 2012-12-11T06:36:28.487 回答