0

经过对这里的一些研究,我找到了在 iphone 应用程序中创建图像幻灯片的解决方案。一切正常,目前图像一个接一个地显示。

我的问题是,我可以让图像交叉溶解/淡化而不是仅仅出现,如果可以,我可以得到一些建议。

我的代码

.m

 }
 int topIndex = 0, prevTopIndex = 1; 
 - (void)viewDidLoad
 {


imagebottom = [[UIImageView alloc] initWithFrame:CGRectMake(0,0,160,240)];
[self.view addSubview:imagebottom];

imagetop = [[UIImageView alloc] initWithFrame:CGRectMake(0,0,160,240)];
[self.view addSubview:imagetop];

imageArray = [NSArray arrayWithObjects:
              [UIImage imageNamed:@"image1.png"],
              [UIImage imageNamed:@"image2.png"],
              [UIImage imageNamed:@"image3.png"],
              [UIImage imageNamed:@"ip2.png"],
              nil];


NSTimer *timer = [NSTimer timerWithTimeInterval:5.0
                                         target:self
                                       selector:@selector(onTimer)
                                       userInfo:nil
                                        repeats:YES];

[[NSRunLoop currentRunLoop] addTimer:timer forMode:NSDefaultRunLoopMode];
[timer fire];

[super viewDidLoad];
}

-(void)onTimer{
if(topIndex %2 == 0){
    [UIView animateWithDuration:5.0 animations:^
     {
         imagebottom.alpha = 0.0;
     }];
    imagetop.image = [imageArray objectAtIndex:prevTopIndex];
    imagetop.image = [imageArray objectAtIndex:topIndex];
}else{
    [UIView animateWithDuration:5.0 animations:^
     {
         imagetop.alpha = 1.0;
     }];
    imagetop.image = [imageArray objectAtIndex:topIndex];
    imagebottom.image = [imageArray objectAtIndex:prevTopIndex];
}
prevTopIndex = topIndex;
if(topIndex == [imageArray count]-1){
    topIndex = 0;
}else{
    topIndex++;
}
4

1 回答 1

2

你有很多选择。如果你有一个“容器”视图,你可以使一个新的 UIImageView 透明(alpha = 0),然后使用 UIView 动画块淡入和淡出另一个图像(或者在两者上保留 alpha = 1 并从你想要的任何一面。

例如,您有自己的主视图 self.view。您有一个 UIImageView *oldView,现在位于 rect (0,0,320,100) 并且您想在滑入 newView imageView 时将其向右滑动。首先将 newView 框架设置为 (-320,0,320,100) 然后 [self .view addSubview newView]。要为更改设置动画:

[UIView animateWithDuration:2 animations:^
  {
     oldView.frame = CGRectMake(320, 0, 320, 100);
     newView.frame = CGRectMake(0,0,320, 100);
  }
completion:^(BOOL finished)
  {
    [oldView removeFromSuperView];
  } ];

您还可以选择使用 UiView 的

+ (void)transitionFromView:(UIView *)fromView toView:(UIView *)toView duration:(NSTimeInterval)duration options:(UIViewAnimationOptions)options completion:(void (^)(BOOL finished))completion

这为您提供了更多/不同的选择(而且它的工作量也更少!)。例如,在第一个示例中使用相同的基本对象,但 newView 与 oldView 具有相同的框架:

transitionFromView:oldView toView:newView duration:2 options: UIViewAnimationOptionTransitionCrossDissolve completion:^(BOOL finished)) { /*whatever*/}];
于 2012-08-07T23:24:27.920 回答