Я думаю, что вы запрашиваете анимацию изображения с отсчетом времени ... Если это так, вы можете использовать это
UIImageView *animView = [[UIImageView alloc] initWithFrame:CGRectMake(0, 855, 768, 92)];
animView.animationImages = [NSArray arrayWithObjects:
[UIImage imageNamed:@"01.jpg"],
[UIImage imageNamed:@"02.jpg"],
[UIImage imageNamed:@"03.jpg"],nil];
// all frames will execute in 1.5 seconds
animView.animationDuration = 7;
// repeat the annimation forever
animView.animationRepeatCount = 0;
// start animating
[animView startAnimating];
// add the animation view to the main window
[webView addSubview:animView];
Надеюсь, это поможет вам.