UIPageControl
さまざまなページをめくるがあります。ユーザーがページ 1 からページ 2 にスクロールすると、UIImageView がフェードし始めます。位置に基づいてレイヤーを追加する適切な方法を見つけようとして苦労しています。どんな助けでも大歓迎です...
[UIView beginAnimations:@"fade out" context:nil];
[UIView setAnimationDuration:1.0]; // some how based on position??
imageView.alpha = 1.0; // here to?
[UIView commitAnimations];
編集:
デリゲートを設定します。
self.pageController = [[UIPageViewController alloc] initWithTransitionStyle:UIPageViewControllerTransitionStyleScroll navigationOrientation:UIPageViewControllerNavigationOrientationHorizontal options:nil];
self.pageController.dataSource = self;